@charset "UTF-8";

/* -------- font -------- */
html {
  width: 100%;
  height: 100%;
}

@media (max-width: 1280px) and (min-width: 769px) {
  html {
    font-size: 16px;
    font-size: 1.25vw;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "M PLUS Rounded 1c", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  overflow-x: hidden;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  color: #554141;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #554141;
}

p {
  font-size: max(1rem, 14px);
  line-height: 2;
}

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

strong {
  font-weight: 700;
}

.en {
  font-family: "Quicksand", sans-serif;
}

.u-tb {
  display: none;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 992px) {
  .u-tb {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }

  p {
    font-size: 0.875rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

/* -----------------------------------
  header
  ----------------------------------- */
.l-header {
  width: 100%;
  margin: 0 auto;
  transition: 0.3s ease all;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #fff;
  height: 84px;
}

.l-header__inner {
  height: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 5.5rem 0 5rem;
}

.l-header__logo {
  position: relative;
  z-index: 99999;
  width: 25%;
  max-width: 260px;
}

@media (hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}

.l-header__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  gap: 1.2rem;
}

.l-header__list a {
  font-weight: 500;
  font-size: 0.9375rem;
  display: block;
  position: relative;
  transition: 0.3s ease;
  letter-spacing: 0.05em;
}

@media (hover: hover) {
  .l-header__list a:hover {
    color: #AB303E;
  }
}

.l-header__info {
  display: none;
}

.c-hamburger {
  display: none;
}

.c-btn-instagram {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  padding: 12px 2.625rem;
  border-radius: 12px;
  letter-spacing: 0.05em;
  transition: 0.3s ease;
}

.c-btn-instagram .text1 {
  font-weight: 600;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 1.125rem;
}

.c-btn-instagram .text1::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/common/icon_instagram.svg") no-repeat center/100%;
}

.c-btn-instagram .text2 {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (hover: hover) {
  .c-btn-instagram:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 1400px) {
  .l-header__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 992px) {
  .l-header {
    padding: 0;
    height: 80px;
  }

  .l-header__inner {
    padding: 0 16px;
    -ms-flex: 1;
    flex: 1;
  }

  .l-header__logo {
    line-height: 1;
    position: relative;
    z-index: 999999;
    margin-right: auto;
    width: 60%;
  }

  .l-header__container {
    display: none;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background-color: #F5E4DF;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    left: 0;
    padding: 92px 20px;
    transition: top 0.5s ease;
  }

  .l-header__nav {
    display: block;
    -ms-flex: initial;
    flex: initial;
    height: auto;
  }

  .l-header__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    height: auto;
    padding-bottom: 32px;
  }

  .l-header__list li {
    width: 100%;
    border-bottom: 1px solid rgba(85, 65, 65, 0.2);
  }

  .l-header__list li a {
    padding: 14px 0;
    font-size: max(0.875rem, 2vw);
    font-weight: 500;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
  }

  .l-header__list li a::after {
    content: "";
    display: block;
    width: 17px;
    height: 4px;
    -webkit-mask-image: url("../img/common/icon_arrow.svg");
    mask-image: url("../img/common/icon_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #554141;
    transition: 0.3s ease;
  }

  .l-header__info {
    display: block;
    max-width: 262px;
    margin: 0 auto;
  }

  .l-header__info .c-btn-instagram {
    margin-bottom: 32px;
    background-color: #AA2F3C;
  }

  .l-header__info address {
    margin-bottom: 14px;
  }

  .l-header__info address, .l-header__info p {
    line-height: 1.58;
    letter-spacing: 0.05em;
  }

  .c-hamburger {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    width: 44px;
    height: 44px;
    z-index: 999999;
    display: block;
    top: 16px;
    right: 16px;
    background-color: #AA2F3C;
    border-radius: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    padding: 10px 10px 0;
    text-align: center;
  }

  .c-hamburger span {
    display: inline-block;
    transition: all 0.2s;
    width: 24px;
    height: 1px;
    background-color: #fff;
    color: #fff;
    border-radius: 4px;
  }

  .c-hamburger span:nth-of-type(4) {
    width: auto;
    height: auto;
    font-weight: 500;
    font-size: 8px;
    background: none;
  }

  .c-hamburger span:nth-of-type(4)::after {
    content: "MENU";
  }

  .c-hamburger.is-active span:nth-of-type(1) {
    width: 24px;
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }

  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .c-hamburger.is-active span:nth-of-type(3) {
    -ms-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }

  .c-hamburger.is-active span:nth-of-type(4)::after {
    content: "CLOSE";
  }

  .c-btn-instagram {
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 262px;
    margin: 0 auto;
  }

  .c-btn-instagram .text1 {
    font-size: 1rem;
  }

  .c-btn-instagram .text1::before {
    width: 18px;
    height: 18px;
  }

  .c-btn-instagram .text2 {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 769px) {
  .l-header__container {
    display: flex;
    gap: 1.2rem;
    align-items: center;
  }

  .l-header-instagram.u-pc a.c-btn-instagram {
    background-color: #ab313e;
    padding: 5px 10px;
  }

  .l-header-instagram.u-pc span.text1.en {
    font-size: 16px;
  }

  .l-header-instagram.u-pc span.text2 {
    font-size: 13px;
  }
}

/* ---------------------------------------------
  footer フッター
  --------------------------------------------- */
.l-footer {
  position: relative;
  z-index: 999;
}

.l-footer-access {
  padding: 120px 0 50px;
}

.l-footer-access__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 4.375rem;
}

.l-footer-access__block .access-text {
  -ms-flex: 1;
  flex: 1;
}

.l-footer-access__block .access-text .logo {
  width: 80%;
  max-width: 294px;
  margin-bottom: 10px;
}

.l-footer-access__block .access-text dl {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(85, 65, 65, 0.3);
  line-height: 1.75;
  gap: 10px;
}

.l-footer-access__block .access-text dl dt {
  font-weight: 700;
  width: 104px;
  letter-spacing: 0;
}

.l-footer-access__block .access-text dl dd {
  -ms-flex: 1;
  flex: 1;
  letter-spacing: 0;
}

.l-footer-access__block .access-map {
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  width: 50vw;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}

.l-footer-access__block .access-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 720/437;
}

.l-footer__container {
  background-color: #AB303E;
  padding: 40px 0 56px;
}

.l-footer__block {
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  margin-top: 40px;
}

.l-footer__info {
  color: #fff;
}

.l-footer__info address {
  margin-bottom: 24px;
}

.l-footer__info address, .l-footer__info p {
  line-height: 1.625;
  letter-spacing: 0.05em;
}

.l-footer__content {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-footer__nav {
  -ms-flex: 1;
  flex: 1;
}

.l-footer__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-footer__links .c-btn-instagram {
  width: 30%;
  max-width: 250px;
}

.l-footer__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 34px 3.5rem;
}

.l-footer__list li:first-child {
  min-width: 7.25rem;
}

.l-footer__list a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s ease;
  color: #fff;
  letter-spacing: 0.05em;
}

@media (hover: hover) {
  .l-footer__list a:hover {
    opacity: 0.7;
  }
}

.l-footer__bottom {
  margin-top: 34px;
}

.l-footer__bottom a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

@media (hover: hover) {
  .l-footer__bottom a:hover {
    opacity: 0.7;
  }
}

.l-footer__copy {
  text-align: right;
  letter-spacing: 0.02em;
}

.l-footer__copy small {
  font-size: 0.875rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .l-footer-access {
    padding: 80px 0 0;
  }

  .l-footer-access__block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .l-footer-access__block .access-text {
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }

  .l-footer-access__block .access-text .logo {
    max-width: 220px;
    margin: 0 auto 20px;
  }

  .l-footer-access__block .access-text dl {
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(85, 65, 65, 0.3);
  }

  .l-footer-access__block .access-text dl dt {
    width: 90px;
  }

  .l-footer-access__block .access-map {
    border-radius: 0;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .l-footer-access__block .access-map iframe {
    aspect-ratio: 375/280;
  }

  .l-footer__container {
    padding: 24px 0 32px;
  }

  .l-footer__container .l-wrap {
    width: 72%;
    max-width: 270px;
  }

  .l-footer__logo {
    width: 80%;
  }

  .l-footer__block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }

  .l-footer__info address {
    margin-bottom: 14px;
  }

  .l-footer__links {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .l-footer__links .c-btn-instagram {
    width: 100%;
    max-width: 262px;
  }

  .l-footer__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
  }

  .l-footer__list li:first-child {
    min-width: initial;
  }

  .l-footer__list a {
    font-size: 0.875rem;
  }

  .l-footer__bottom {
    margin-top: 30px;
  }

  .l-footer__bottom a {
    font-size: 0.875rem;
  }

  .l-footer__copy {
    text-align: left;
    margin-top: 20px;
  }
}

/* ------- c-page-top ------- */
.c-page-top {
  display: block;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99;
  background-color: #AB303E;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 6px;
}

.c-page-top a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
  transition: 0.3s ease;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.c-page-top a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/common/icon_arrow.svg") no-repeat center/100%;
  transition: 0.3s ease;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* —————————————————
  component
  —————————————————*/
/* ------- title --------- */
.c-ttl {
  margin-bottom: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-ttl .en {
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.c-ttl .ja {
  font-size: 1.125rem;
  font-weight: 500;
}

.c-ttl.center {
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .c-ttl {
    margin-bottom: 24px;
  }

  .c-ttl .en {
    font-size: 1.875rem;
  }

  .c-ttl .ja {
    font-size: 0.8125rem;
  }
}

/* ------- btn --------- */
.c-btn {
  font-weight: 700;
  display: -ms-flexbox;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 300px;
  transition: 0.3s ease;
  font-size: 0.9375rem;
  margin-top: 64px;
  background-color: #AB303E;
  border: 1px solid #AB303E;
  border-radius: 30px;
  color: #F5EBDA;
  padding: 16px 32px;
  letter-spacing: 0.05em;
}

.c-btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .c-btn:hover {
    color: #AB303E;
    background-color: #fff;
  }

  .c-btn:hover::after {
    background-color: #AB303E;
  }
}

.c-btn.center {
  margin-right: auto;
  margin-left: auto;
}

.c-btn.right {
  margin-right: 0;
  margin-left: auto;
}

.c-btn-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 64px;
  margin-top: 56px;
}

.c-btn-list .c-btn {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 0.875rem;
    padding: 14px 45px 14px 55px;
    margin: 40px auto 0;
    width: 100%;
    max-width: 390px;
  }

  .c-btn.right {
    margin-right: auto;
  }

  .c-btn-list {
    margin-top: 24px;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

/* ------- item --------- */
.c-item {
  background-color: #F5E4DF;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  border: 1px solid rgba(89, 74, 74, 0.1);
  /* border-top: none; */
}

.c-item__img {
  position: relative;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}

.c-item__img img {
  width: 100%;
  aspect-ratio: 400/225;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-item__text {
  padding: 16px 20px 18px;
}

.c-item__text .item-name {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.c-item__text .item-price {
  margin-bottom: 4px;
}

.c-item__text .item-desc {
  font-size: 0.9375rem;
  line-height: 1.86;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
}

.c-item-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}

.c-item-limited {
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(85, 65, 65, 0.9);
  border-radius: 30px;
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.c-item-limited::before {
  content: "";
  display: block;
}

.c-item-limited.winter::before {
  width: 10px;
  height: 18px;
  background: url("../img/common/icon_winter.svg") no-repeat center/100%;
}

.c-item-limited.summer::before {
  width: 18px;
  height: 18px;
  background: url("../img/common/icon_summer.svg") no-repeat center/100%;
}

.c-item-limited.xmas::before {
  width: 18px;
  height: 18px;
  background: url("../img/common/icon_xmas.svg") no-repeat center/100%;
}

@media screen and (max-width: 768px) {
  .c-item {
    min-height: initial;
  }

  .c-item__text .item-name {
    font-size: 0.9375rem;
  }

  .c-item__text .item-price {
    font-size: 0.875rem;
  }

  .c-item__text .item-desc {
    font-size: 0.8125rem;
    line-height: 2.1;
  }

  .c-item-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ------- block --------- */
.c-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.c-block-text {
  position: relative;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px;
}

.c-block-text>* {
  position: relative;
}

.c-block-text .ttl {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.c-block-text p {
  font-weight: 500;
}

.c-block-img img {
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .c-block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .c-block-text {
    padding: 0;
  }

  .c-block-text .ttl {
    font-size: 1.125rem;
    margin-bottom: 30px;
  }
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-bold {
  font-weight: 700;
}

.l-wrap {
  width: calc(100% - 6.25rem);
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
  .l-wrap {
    width: calc(100% - 2.5rem);
  }
}

/* ---------------------------------------------
  top-mv
  --------------------------------------------- */
.p-top-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 84px;
}

.p-top-mv::before {
  content: "";
  display: block;
  width: 100vw;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  background-color: #F5E4DF;
}

.p-top-mv__wrap {
  width: calc(100% - 10rem);
  margin: 0 auto;
  position: relative;
}

.p-top-mv__movie {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  margin: 0 auto;
  background-color: #fff;
}

.p-top-mv__movie video {
  display: block;
  aspect-ratio: 1280/612;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv__movie::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

.p-top-mv__copy {
  position: absolute;
  top: 2.125rem;
  right: 7.5rem;
  width: 16%;
  max-width: 186px;
}

.p-top-mv__block {
  position: absolute;
  left: 48px;
  bottom: 11%;
}

.p-top-mv__block p {
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

.p-top-mv__block p:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 1400px) {
  .p-top-mv__wrap {
    width: calc(100% - 2.5rem);
    margin: 0 auto;
    position: relative;
  }
}

@media screen and (max-width: 992px) {
  .p-top-mv {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-mv::before {
    height: 70%;
  }

  .p-top-mv__wrap {
    width: calc(100% - 30px);
  }

  .p-top-mv__movie {
    border-radius: 20px;
  }

  .p-top-mv__movie video {
    aspect-ratio: 345/310;
  }

  .p-top-mv__copy {
    top: 16px;
    right: 20px;
    gap: 14px;
    width: 33%;
  }

  .p-top-mv__copy img {
    width: 100%;
  }

  .p-top-mv__block {
    position: relative;
    left: initial;
    bottom: initial;
    padding: 15px 5px 0;
  }

  .p-top-mv__block::before {
    content: "";
    display: block;
    width: 270px;
    aspect-ratio: 270/240;
    height: auto;
    background: url("../img/top/mv_bg.svg") no-repeat center/100%;
    opacity: 0.22;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-top-mv__block p {
    color: #554141;
    font-size: 0.8125rem;
    position: relative;
    line-height: 1.8;
  }

  .p-top-mv__block p:not(:last-child) {
    margin-bottom: 24px;
  }
}

/* ---------------------------------------------
  top-news
  --------------------------------------------- */
.p-top-news {
  padding: 7.5rem 0 12.5rem;
  background-color: #F5E4DF;
  position: relative;
}

.p-top-news::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background: #fff;
  height: max(6.38vw, 92px);
  -webkit-mask-image: url("../img/common/bg_curve.svg");
  mask-image: url("../img/common/bg_curve.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: top center;
  mask-position: top center;
  z-index: 0;
}

.p-top-news .c-ttl {
  margin-bottom: 0;
}

.p-top-ews__contents {
  flex-grow: 1;
}

.p-top-news__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3.125rem;
}

.p-top-news__contents {
  width: 80%;
  max-width: 992px;
}

.p-top-news__contents .news-award {
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-top-news__contents .news-award a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-top-news__contents .c-btn {
  margin-left: auto;
}

p.news-award a {
  text-decoration: underline;
}

.p-news__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-news__list li {
  border-bottom: 1px solid rgba(85, 65, 65, 0.2);
}

.p-news__list li:first-child {
  border-top: 1px solid rgba(85, 65, 65, 0.2);
}

.p-news__list a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  transition: 0.3s ease;
  gap: 4.5rem;
  letter-spacing: 0.05em;
  padding: 20px 4px;
  font-weight: 500;
}

@media (hover: hover) {
  .p-news__list a:hover {
    opacity: 0.7;
  }
}

.p-news__list .date {
  opacity: 0.7;
  width: 20%;
}

.p-news__list .ttl {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .p-top-news {
    padding: 64px 0 100px;
  }

  .p-top-news::after {
    height: 6.4vw;
  }

  .p-top-news__block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .p-top-news__contents {
    width: 100%;
    max-width: 100%;
  }

  .p-top-news__contents .news-award {
    margin-bottom: 10px;
    font-size: 0.875rem;
  }

  .p-news__list {
    gap: 0;
    padding: 0;
  }

  .p-news__list a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    letter-spacing: 0.05em;
    padding: 10px 4px;
  }

  .p-news__list .date {
    width: 100%;
    font-size: 0.8125rem;
    line-height: 1.2;
  }

  .p-news__list .ttl {
    font-size: 0.8125rem;
    width: 100%;
  }
}

/* ---------------------------------------------
  top-new-item
  --------------------------------------------- */
.p-top-new-item {
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.p-top-new-item .c-ttl {
  margin-bottom: 0;
}

.p-item__slider {
  overflow: initial;
  position: relative;
  overflow: initial ! IMPORTANT;
  position: relative ! IMPORTANT;
  z-index: 2;
  margin-top: -20px;
  margin-top: 50px;
}

.p-item__slider .swiper-slide {
  height: auto !important;
}

.p-item__slider .c-item {
  height: 100%;
}

.p-item__slider .c-item__img {
  border-radius: 0;
}

.p-item__slider .c-item__img img {
  aspect-ratio: 294/190;
}

.p-item__slider .swiper-control__wrap {
  display: block;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 24px;
}

.p-item__slider .swiper-control__wrap .swiper-button-next,
.p-item__slider .swiper-control__wrap .swiper-button-prev {
  width: 50px;
  height: 50px;
  transition: 0.3s ease;
  margin: 0;
  position: static;
}

.p-item__slider .swiper-control__wrap .swiper-button-next:after,
.p-item__slider .swiper-control__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  transition: 0.3s ease;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url("../img/common/icon_arrow_slider-transparent.svg") no-repeat center/100%;
}

.p-item__slider .swiper-control__wrap .swiper-button-prev {
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.p-item__slider .swiper-pagination {
  position: static;
  margin-top: 64px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 22px;
}

.p-item__slider .swiper-pagination-bullet {
  position: static;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: none;
  opacity: 1;
  border: 1px solid rgba(89, 74, 74, 0.3);
  margin: 0 !important;
}

.p-item__slider .swiper-pagination-bullet-active {
  background-color: #AB303E;
}

.scroll-hint-icon-wrap {
  z-index: 10;
}

@media screen and (min-width: 769px) {
  .p-item__slider .swiper-control__wrap {
    /* margin-top: 50px; */
    position: absolute;
    width: 100vw;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    justify-content: space-between;
    padding: 0px 10px;
  }

  .p-item__slider .swiper-control__wrap .swiper-button-prev {
    /* position: absolute;
    top: 50%;
    left: -50px; */
  }

  .p-item__slider .swiper-control__wrap .swiper-button-next {
    /* position: absolute;
    top: 50%;
    right: -50px; */
  }

}

@media screen and (max-width: 768px) {
  .p-top-new-item {
    padding: 24px 0 44px;
  }

  .p-item__slider {
    margin-top: 20px;
  }

  .p-item__slider .c-item {
    border-radius: 30px;
  }

  .p-item__slider .c-item__img {
    border-radius: 0 0 30px 30px;
  }

  .p-item__slider .c-item__img img {
    aspect-ratio: 278/190;
  }

  .p-item__slider .swiper-control__wrap {
    gap: 16px;
    margin-bottom: 20px;
    margin-right: -6px;
  }

  .p-item__slider .swiper-control__wrap .swiper-button-next,
  .p-item__slider .swiper-control__wrap .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .p-item__slider .swiper-control__wrap .swiper-button-next:after,
  .p-item__slider .swiper-control__wrap .swiper-button-prev:after {
    width: 40px;
    height: 40px;
    background: url("../img/common/icon_arrow_slider.svg") no-repeat center/100%;
  }

  .p-item__slider .swiper-pagination {
    margin-top: 32px;
    gap: 18px;
  }

  .p-item__slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* ---------------------------------------------
  category section
  --------------------------------------------- */
.p-category-section {
  overflow: hidden;
}

.p-category-section.p-top-category {
  padding: 4.375rem 0 8.75rem;
}

.p-category-section.p-top-category .p-category__block {
  position: relative;
  padding: 9.375rem 0 4.375rem;
}

.p-category-section.p-top-category .p-category__img {
  top: 0;
  -ms-transform: none;
  transform: none;
}

.p-category-section.p-top-category .p-category__img img {
  border-radius: 20px;
}

.p-category-ttl {
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  letter-spacing: 0.05em;
}

.p-category-ttl .en {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.2;
}

.p-category-ttl .ja {
  font-size: 1.25rem;
  font-weight: 700;
}

.p-category__block {
  position: relative;
  padding: 40px 0 20px;
}

.p-category__block .c-btn {
  margin-top: 56px;
}

.p-category__block::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200/486;
}

.p-category__block:nth-child(1)::before {
  background: url("../img/common/category_bg_1.svg") no-repeat center/100%;
  right: -20%;
  bottom: 0;
}

.p-category__block:nth-child(1) .p-category__img {
  width: 57.5vw;
  right: calc(50% - 53vw);
}

.p-category__block:nth-child(2)::before {
  background: url("../img/common/category_bg_2.svg") no-repeat center/100%;
  left: -20%;
  bottom: 0;
}

.p-category__block:nth-child(2) .p-category__img {
  width: 58.5vw;
  left: calc(50% - 55vw);
}

.p-category__block:nth-child(2) .p-category-ttl {
  width: 40%;
  max-width: 490px;
  margin-left: auto;
}

.p-category__block:nth-child(2) .p-category__text {
  margin-left: auto;
}

.p-category__block:nth-child(3)::before {
  background: url("../img/common/category_bg_3.svg") no-repeat center/100%;
  right: -20%;
  bottom: 0;
}

.p-category__block:nth-child(3) .p-category__img {
  width: 55.5vw;
  right: calc(50% - 51vw);
}

.p-category__block:not(:last-child) {
  margin-bottom: 120px;
}

.p-category__img {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  gap: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-category__img img {
  border-radius: 30px;
}

.p-category__img .img-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.p-category__img>*:first-child, .p-category__img>*:last-child {
  margin-top: 35px;
  position: relative;
}

.p-category__text {
  width: 40%;
  max-width: 490px;
  position: relative;
}

.p-category__text p {
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-category-section {
    padding: 44px 0 0;
  }

  .p-category-section .c-ttl {
    margin-bottom: 56px;
  }

  .p-category-section.p-top-category {
    padding: 44px 0 80px;
  }

  .p-category-section.p-top-category .p-category__block {
    padding: 0;
  }

  .p-category-section.p-top-category .p-category__img img {
    border-radius: 30px;
  }

  .p-category-ttl {
    margin-bottom: 20px;
    min-width: initial;
  }

  .p-category-ttl .en {
    font-size: 2.125rem;
  }

  .p-category-ttl .ja {
    font-size: 0.875rem;
  }

  .p-category__block {
    padding: 0;
  }

  .p-category__block .c-btn {
    margin-top: 40px;
  }

  .p-category__block::before {
    width: 1755px;
    max-width: 1755px;
    aspect-ratio: 1755/710;
  }

  .p-category__block:nth-child(1)::before {
    right: initial;
    left: -10%;
    bottom: initial;
    top: 0;
  }

  .p-category__block:nth-child(1) .p-category__img {
    width: 100vw;
    -ms-flex-align: end;
    align-items: flex-end;
    right: 4%;
  }

  .p-category__block:nth-child(1) .p-category__img .img-wrap:nth-child(2) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-category__block:nth-child(1) .p-category__img .img-wrap:nth-child(3) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  .p-category__block:nth-child(1) .p-category__img .img-one {
    -ms-transform: translateX(3.75rem);
    transform: translateX(3.75rem);
  }

  .p-category__block:nth-child(2)::before {
    left: initial;
    right: -10%;
    bottom: initial;
    top: -8%;
  }

  .p-category__block:nth-child(2) .p-category-ttl {
    width: 100%;
    max-width: 100%;
    text-align: right;
  }

  .p-category__block:nth-child(2) .p-category__img {
    width: 100vw;
    left: -15%;
  }

  .p-category__block:nth-child(2) .p-category__img .img-wrap {
    -ms-transform: translateX(-2rem);
    transform: translateX(-2rem);
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-category__block:nth-child(2) .p-category__img .img-wrap:nth-child(1) {
    -ms-flex-order: 3;
    order: 3;
  }

  .p-category__block:nth-child(2) .p-category__img .img-wrap:nth-child(3) {
    -ms-flex-order: 1;
    order: 1;
  }

  .p-category__block:nth-child(2) .p-category__img .img-one {
    -ms-flex-order: 2;
    order: 2;
  }

  .p-category__block:nth-child(3)::before {
    right: initial;
    left: -10%;
    bottom: initial;
    top: 0;
  }

  .p-category__block:nth-child(3) .p-category__img {
    width: 100vw;
    -ms-flex-align: end;
    align-items: flex-end;
    right: 2%;
  }

  .p-category__block:nth-child(3) .p-category__img>*:first-child, .p-category__block:nth-child(3) .p-category__img>*:last-child {
    -ms-transform: translateX(1.5rem);
    transform: translateX(1.5rem);
  }

  .p-category__block:nth-child(3) .p-category__img .img-one {
    -ms-transform: translateX(3.125rem);
    transform: translateX(3.125rem);
  }

  .p-category__block:not(:last-child) {
    margin-bottom: 80px;
  }

  .p-category__img {
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 40px;
    top: 0;
    -ms-transform: none;
    transform: none;
  }

  .p-category__img .img-wrap {
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 6px;
    max-width: 88vw;
  }

  .p-category__img .img-item {
    border-radius: 30px;
  }

  .p-category__img .img-one {
    max-width: 95vw;
  }

  .p-category__img>*:first-child, .p-category__img>*:last-child {
    margin-top: 0;
  }

  .p-category__text {
    width: 100%;
    max-width: 100%;
  }

  .p-category__text p {
    line-height: 2.2;
  }
}

/* ---------------------------------------------
 top about
  --------------------------------------------- */
.p-top-about {
  background-color: #F5E4DF;
  border-radius: 80px 80px 0 0;
  padding: 88px 0 120px;
}

.p-top-about__block {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 4.25rem;
}

.p-top-about__block .about-img img {
  border-radius: 20px;
}

.p-top-about__block .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.p-top-about__block dl {
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(85, 65, 65, 0.3);
  line-height: 1.75;
  gap: 10px;
}

.p-top-about__block dl dt {
  font-weight: 700;
  width: 100px;
}

@media screen and (max-width: 768px) {
  .p-top-about {
    border-radius: 30px 30px 0 0;
    padding: 44px 0 80px;
  }

  .p-top-about__block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-top-about__block .logo {
    max-width: 220px;
    margin: 0 auto 20px;
  }

  .p-top-about__block .about-img img {
    aspect-ratio: 335/242;
  }

  .p-top-about__block dl {
    gap: 16px;
  }
}

/* ---------------------------------------------
 top instragram
  --------------------------------------------- */
.p-top-instagram {
  padding: 100px 0 0;
}

.p-top-instagram__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.p-top-instagram__list li {
  padding: 12px;
  background-color: #F5E4DF;
  border-radius: 20px;
}

.p-top-instagram__list li img {
  border-radius: 20px;
}

.p-top-instagram .c-btn.more::after {
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../img/common/icon_instagram.svg");
  mask-image: url("../img/common/icon_instagram.svg");
}

.p-top-instagram .c-btn.follow::after {
  width: 14px;
  height: 14px;
  -webkit-mask-image: url("../img/common/icon_follow.svg");
  mask-image: url("../img/common/icon_follow.svg");
}

#sb_instagram .sbi_photo img {
  padding: 12px !important;
  background-color: #F5E4DF;
  border-radius: 20px;
}

#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a {
  border-radius: 30px !important;
  color: #F5EBDA;
  padding: 16px 32px !important;
  letter-spacing: 0.05em !important;
  font-weight: 700 !important;
}

@media screen and (max-width: 768px) {
  .p-top-instagram {
    padding: 44px 0 0;
  }

  .p-top-instagram__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .p-top-instagram__list li {
    padding: 6px;
    border-radius: 8px;
  }

  .p-top-instagram__list li img {
    border-radius: 8px;
  }

  .p-top-instagram__list li:nth-child(n+7) {
    display: none;
  }

  #sb_instagram .sbi_photo img {
    padding: 6px !important;
  }
}

/* ------------------------
  page component
  ------------------------*/
/* -------- page-head -------- */
.c-page-head {
  position: relative;
  z-index: 3;
  width: calc(100% - 10rem);
  margin: 84px auto 0;
}

.c-page-head .c-ttl {
  margin-bottom: 0;
}

.c-page-head__img {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  background-color: #fff;
}

.c-page-head__img img {
  width: 100%;
  aspect-ratio: 1280/386;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-page-head__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #554141;
  opacity: 0.31;
  position: absolute;
  top: 0;
  left: 0;
}

.c-page-head__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% - 12.5rem);
}

.c-page-head__ttl .c-ttl {
  color: #fff;
}

.c-page-head__ttl .c-ttl .en {
  color: #fff;
}

.c-page-head__ttl .c-ttl .en::after {
  background-color: #fff;
}

.c-page-head__ttl .c-ttl .ja::before {
  background-color: #fff;
}

.c-page-head__ttl .c-ttl-sub {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .c-page-head {
    width: calc(100% - 1.875rem);
  }
}

@media screen and (max-width: 992px) {
  .c-page-head {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .c-page-head {
    width: calc(100% - 1.875rem);
    margin: 84px auto 0;
  }

  .c-page-head__img {
    border-radius: 20px;
  }

  .c-page-head__img img {
    aspect-ratio: 375/180;
  }

  .c-page-head__ttl {
    width: calc(100% - 2.5rem);
  }
}

/* ----------- breadcrumbs -----------*/
.c-breadcrumbs {
  position: relative;
  z-index: 1;
  width: calc(100% - 10rem);
  margin: 10px auto 0 !important;
}

.c-breadcrumbs__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

.c-breadcrumbs__list li:not(:last-of-type)::after {
  content: ">";
  margin: 0 4px;
}

.c-breadcrumbs__list li,
.c-breadcrumbs__list a {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    margin-top: 8px;
    width: calc(100% - 1.875rem);
  }

  .c-breadcrumbs.is-bg::before {
    top: -32px;
  }

  .c-breadcrumbs__list {
    width: auto;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow: auto;
  }

  .c-breadcrumbs__list li,
  .c-breadcrumbs__list a {
    font-size: 0.6875rem;
  }
}

.p-contents-first {
  margin-top: -180px;
  position: relative;
  background-color: #F5E4DF;
}

.p-contents-first::before {
  content: "";
  display: block;
  width: 100%;
  height: 180px;
}

@media screen and (max-width: 768px) {
  .p-contents-first {
    margin-top: -100px;
  }

  .p-contents-first::before {
    height: 100px;
  }
}

/* ---------------------------------------------
  concept section
  --------------------------------------------- */
.p-concept-section {
  padding: 80px 0 200px;
  position: relative;
}

.p-concept-section::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background: #fff;
  height: max(6.38vw, 92px);
  -webkit-mask-image: url("../img/common/bg_curve.svg");
  mask-image: url("../img/common/bg_curve.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: top center;
  mask-position: top center;
  z-index: 0;
}

.p-concept__text {
  position: relative;
}

.p-concept__text>* {
  position: relative;
}

.p-concept__text::before {
  content: "";
  display: block;
  opacity: 0.28;
  filter: blur(3px);
}

.p-concept__img {
  position: relative;
}

.p-concept__img img {
  border-radius: 30px;
  position: relative;
}

.p-concept__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
  max-width: 1008px;
  margin: 0 auto;
}

.p-concept__block .concept-lead {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  position: relative;
}

.p-concept__block:nth-child(1) {
  margin-bottom: 88px;
}

.p-concept__block:nth-child(1) .p-concept__img {
  max-width: 470px;
}

.p-concept__block:nth-child(1) .p-concept__img::before {
  content: "";
  display: block;
  width: 120%;
  max-width: 550px;
  aspect-ratio: 550/400;
  background: url("../img/concept/deco_2.svg") no-repeat center/100%;
  position: absolute;
  left: 20%;
  bottom: -50%;
  opacity: 0.14;
  filter: blur(3px);
}

.p-concept__block:nth-child(1) .p-concept__text::before {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 400/280;
  background: url("../img/concept/deco_1.svg") no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-concept__block:nth-child(2) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-concept__block:nth-child(2) .p-concept__img {
  max-width: 420px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 2.5rem;
}

.p-concept__block:nth-child(2) .p-concept__img .item:nth-child(2) {
  margin-top: 3.75rem;
}

.p-concept__block:nth-child(2) .p-concept__text {
  width: 50%;
  max-width: 460px;
}

.p-concept__block:nth-child(2) .p-concept__text::before {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 425/346;
  background: url("../img/concept/deco_3.svg") no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-concept__block:nth-child(2) .p-concept__text p {
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-concept-section {
    padding: 64px 0 100px;
  }

  .p-concept-section::after {
    height: 6.4vw;
  }

  .p-concept__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
  }

  .p-concept__block .concept-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .p-concept__block:nth-child(1) {
    margin-bottom: 30px;
  }

  .p-concept__block:nth-child(1) .p-concept__img {
    max-width: 100%;
  }

  .p-concept__block:nth-child(1) .p-concept__img::before {
    width: 80%;
    left: 0;
    bottom: -50%;
  }

  .p-concept__block:nth-child(1) .p-concept__text::before {
    width: 80%;
    left: initial;
    right: 0;
    top: 20%;
  }

  .p-concept__block:nth-child(2) .p-concept__img {
    max-width: 100%;
    gap: 20px;
  }

  .p-concept__block:nth-child(2) .p-concept__img .item:nth-child(2) {
    margin-top: 24px;
  }

  .p-concept__block:nth-child(2) .p-concept__text {
    width: 100%;
    max-width: 100%;
  }

  .p-concept__block:nth-child(2) .p-concept__text .u-sp {
    display: inline-block;
  }

  .p-concept__block:nth-child(2) .p-concept__text::before {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 425/346;
    background: url("../img/concept/deco_3.svg") no-repeat center/100%;
    position: absolute;
    left: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* ---------------------------------------------
  item-list page
  --------------------------------------------- */
.p-item-category {
  padding: 90px 0 180px;
  position: relative;
}

.p-item-category::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background: #fff;
  height: max(6.38vw, 92px);
  -webkit-mask-image: url("../img/common/bg_curve.svg");
  mask-image: url("../img/common/bg_curve.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: top center;
  mask-position: top center;
  z-index: 0;
}

.p-item-list-section:not(:last-child) {
  margin-bottom: 88px;
}

.p-item-category__list {
  width: calc(100% - 2.5rem);
  max-width: 1190px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.p-item-category__list a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.375rem;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(85, 65, 65, 0.3);
  padding: 8px 24px 8px 12px;
  position: relative;
  transition: 0.3s ease;
  font-size: 1.125rem;
  font-weight: 500;
}

.p-item-category__list a::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #554141;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (hover: hover) {
  .p-item-category__list a:hover {
    opacity: 0.7;
  }
}

.p-item-category__list .category-img {
  display: inline-block;
  border-radius: 90px;
  overflow: hidden;
  width: 6.5rem;
}

@media screen and (max-width: 768px) {
  .p-item-category {
    padding: 64px 0 100px;
  }

  .p-item-category::after {
    height: 6.4vw;
  }

  .p-item-list-section:last-child {
    margin-bottom: 80px;
  }

  .p-item-category__list {
    width: calc(100% - 2.5rem);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .p-item-category__list a {
    font-size: 1rem;
  }

  .p-item-category__list a::after {
    right: 16px;
  }

  .p-item-category__list .category-img {
    width: 88px;
  }
}

/* ---------------------------------------------
  item-list page
  --------------------------------------------- */
.p-new-item-section {
  padding: 90px 0 120px;
  position: relative;
}

.p-new-item-list .c-item {
  background-color: #FCF6F5;
}

@media screen and (max-width: 768px) {
  .p-item-category {
    padding: 64px 0 100px;
  }
}

/* ---------------------------------------------
  baking schedule page
  --------------------------------------------- */
.p-baking-schedule-section {
  padding: 60px 0 120px;
}

.p-baking-schedule-section .l-wrap {
  background-color: rgba(255, 255, 255, 0.49);
  border-radius: 30px;
  padding: 56px 20px 80px;
}

.p-baking-schedule-section .u-center {
  font-weight: 500;
  line-height: 1.7;
}

.p-baking-schedule__list {
  max-width: 970px;
  margin: 64px auto 0;
}

.p-baking-schedule__list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}

.p-baking-schedule__list li:not(:last-child) {
  margin-bottom: 56px;
}

.p-baking-schedule__list li:not(:last-child) .baking-text::before {
  content: "";
  display: block;
  width: 3px;
  height: calc(100% + 90px);
  background-image: radial-gradient(circle, #B2414D 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 3px 15px;
  opacity: 0.75;
  position: absolute;
  left: 50px;
  top: 100%;
}

.p-baking-schedule__list .baking-img {
  border-radius: 60px;
  overflow: hidden;
  width: 172px;
}

.p-baking-schedule__list .baking-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  position: relative;
  -ms-flex: 1;
  flex: 1;
}

.p-baking-schedule__list .baking-text time {
  width: 100px;
  background-color: rgba(171, 48, 62, 0.9);
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.125rem;
  color: #F9F1EE;
  display: block;
  text-align: center;
  padding: 4px;
  position: relative;
  z-index: 1;
}

.p-baking-schedule__list .baking-text .anytime {
  width: 100px;
  background-color: rgba(85, 65, 65, 0.9);
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.125rem;
  color: #F9F1EE;
  display: block;
  text-align: center;
  padding: 4px;
  position: relative;
  z-index: 1;
}

.p-baking-schedule__list .baking-text .name {
  font-size: 1.125rem;
  font-weight: 700;
}

.p-baking-schedule__list .baking-text .desc {
  -ms-flex: 1;
  flex: 1;
}

.p-baking-schedule__list li:has(+ li.baking-anytime) .baking-text::before {
  display: none;
}

.p-baking-schedule__list .baking-anytime .baking-text {
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .p-baking-schedule-section {
    padding: 40px 0 80px;
  }

  .p-baking-schedule-section .l-wrap {
    padding: 40px 16px 60px;
  }

  .p-baking-schedule__list {
    margin-top: 50px;
  }

  .p-baking-schedule__list li {
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    position: relative;
  }

  .p-baking-schedule__list li:not(:last-child) .baking-text::before {
    height: calc(100% + 60px);
    background-size: 3px 8px;
    left: 54px;
    top: 0;
  }

  .p-baking-schedule__list .baking-img {
    width: 110px;
    position: relative;
    z-index: 2;
  }

  .p-baking-schedule__list .baking-text {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    position: static;
  }

  .p-baking-schedule__list .baking-text time {
    width: 70px;
    font-size: 0.9375rem;
  }

  .p-baking-schedule__list .baking-text .anytime {
    width: 70px;
    font-size: 0.9375rem;
  }

  .p-baking-schedule__list .baking-text .name {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  .p-baking-schedule__list .baking-anytime .baking-text {
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

/* ---------------------------------------------
  service-ticket page
  --------------------------------------------- */
.p-service-ticket-section {
  padding: 40px 0 120px;
}

.p-service-ticket-section .lead {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-service-ticket__block {
  background-color: rgba(255, 255, 255, 0.49);
  border-radius: 30px;
  padding: 80px 16px 16px;
  position: relative;
  max-width: 1040px;
  margin: 110px auto 0;
  border: 1px solid rgba(85, 65, 65, 0.3);
}

.p-service-ticket__block .ticket-ttl {
  background-color: #AB303E;
  border-radius: 16px;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  position: absolute;
  top: -30px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 14px 32px;
  letter-spacing: 0.05em;
  width: -moz-max-content;
  width: max-content;
}

.p-service-ticket__block .ticket-ttl::before {
  content: "";
  display: block;
  width: 32px;
  height: 18px;
  background: url("../img/common/icon_ticket.svg") no-repeat center/100%;
  -ms-transform: rotate(-22deg);
  transform: rotate(-22deg);
}

.p-service-ticket__block .note {
  margin-top: 40px;
  font-weight: 700;
  line-height: 1.45;
}

.p-service-ticket__block:not(:first-of-type) {
  margin-top: 170px;
  position: relative;
}

.p-service-ticket__block:not(:first-of-type)::before {
  content: "";
  display: block;
  width: 3px;
  height: 170px;
  background-image: radial-gradient(circle, #B2414D 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 3px 15px;
  opacity: 0.75;
  position: absolute;
  left: 50%;
  bottom: 100%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.p-service-ticket__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3rem;
  max-width: 792px;
  margin: 0 auto;
}

.p-service-ticket__list:not(:last-of-type) {
  margin-bottom: 40px;
}

.p-service-ticket__list .item-img {
  width: 100%;
  max-width: 182px;
  border-radius: 60px;
  overflow: hidden;
  margin-bottom: 12px;
}

.p-service-ticket__list .item-name {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
}

.p-service-ticket__list .text {
  color: #C26A73;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  font-size: 1.5rem;
  margin-top: 1.875rem;
}

.p-service-ticket-section .c-block {
  margin-top: 120px;
}

.p-service-ticket-section .c-block-img {
  width: 50%;
  max-width: 596px;
}

.p-service-ticket-section .c-block-text {
  position: relative;
}

.p-service-ticket-section .c-block-text::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 546px;
  aspect-ratio: 546/440;
  background: url("../img/service-ticket/deco_1.svg") no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0.22;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .p-service-ticket-section {
    padding: 60px 0 80px;
  }

  .p-service-ticket-section .lead {
    font-size: 1rem;
  }

  .p-service-ticket__block {
    padding: 60px 16px 16px;
    margin-top: 80px;
  }

  .p-service-ticket__block .ticket-ttl {
    border-radius: 10px;
    top: -20px;
    font-size: 1.125rem;
    padding: 10px 24px;
  }

  .p-service-ticket__block .ticket-ttl::before {
    width: 28px;
    height: 14px;
  }

  .p-service-ticket__block .note {
    margin-top: 32px;
  }

  .p-service-ticket__block:not(:first-of-type) {
    margin-top: 120px;
  }

  .p-service-ticket__block:not(:first-of-type)::before {
    height: 120px;
    background-size: 3px 10px;
  }

  .p-service-ticket__list {
    gap: 16px;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-service-ticket__list:not(:last-of-type) {
    margin-bottom: 16px;
  }

  .p-service-ticket__list .item-img {
    margin: 0 auto 12px;
  }

  .p-service-ticket__list .text {
    margin-top: 0;
  }

  .p-service-ticket-section .c-block {
    margin-top: 60px;
  }

  .p-service-ticket-section .c-block-img {
    width: 100%;
    max-width: 100%;
  }
}

/* ---------------------------------------------
  sdgs page
  --------------------------------------------- */
.p-sdgs-section {
  padding: 40px 0 120px;
}

.p-sdgs-section .lead {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.7;
}

.p-sdgs__block {
  margin-top: 120px;
}

.p-sdgs__block .c-block-img {
  width: 58%;
  max-width: 640px;
}

.p-sdgs__block .c-block-text {
  position: relative;
  padding-right: 0;
}

.p-sdgs__block .c-block-text::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0.22;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-sdgs__block .c-block-text .ttl {
  margin-bottom: 32px;
}

.p-sdgs__block:first-of-type {
  margin-top: 88px;
}

.p-sdgs__block:nth-of-type(odd) {
  max-width: 1220px;
  margin-left: auto;
}

.p-sdgs__block:nth-of-type(even) {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-sdgs__block:nth-of-type(1) .c-block-text::before {
  max-width: 546px;
  aspect-ratio: 546/440;
  background: url("../img/sdgs/deco_1.svg") no-repeat center/100%;
}

.p-sdgs__block:nth-of-type(2) .c-block-text {
  width: 80%;
  max-width: 540px;
}

.p-sdgs__block:nth-of-type(2) .c-block-text::before {
  width: 80%;
  max-width: 340px;
  aspect-ratio: 340/420;
  background: url("../img/sdgs/deco_2.svg") no-repeat center/100%;
}

.p-sdgs__block:nth-of-type(3) .c-block-text::before {
  max-width: 488px;
  aspect-ratio: 488/368;
  background: url("../img/sdgs/deco_3.svg") no-repeat center/100%;
}

.p-sdgs-hint {
  background-color: rgba(255, 255, 255, 0.49);
  border: 1px solid rgba(85, 65, 65, 0.1);
  border-radius: 30px;
  padding: 56px 16px;
  position: relative;
  margin: 150px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5rem;
}

.p-sdgs-hint .hint-ttl {
  background-color: #fff;
  border-radius: 16px;
  color: #AB303E;
  border: 3px solid #AB303E;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: -30px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 32px;
  width: -moz-max-content;
  width: max-content;
}

.p-sdgs-hint .hint-ttl::before {
  content: "";
  display: block;
  width: 28px;
  height: 32px;
  background: url("../img/common/icon_hint.svg") no-repeat center/100%;
}

.p-sdgs-hint .hint-img {
  width: 22%;
  max-width: 265px;
}

.p-sdgs-hint .hint-text {
  -ms-flex: 1;
  flex: 1;
  max-width: 700px;
}

@media screen and (max-width: 768px) {
  .p-sdgs-section {
    padding: 60px 0 80px;
  }

  .p-sdgs-section .lead {
    font-size: 1rem;
  }

  .p-sdgs__block {
    margin-top: 60px;
  }

  .p-sdgs__block .c-block-img {
    width: 100%;
    max-width: 100%;
  }

  .p-sdgs__block .c-block-text .ttl {
    margin-bottom: 24px;
  }

  .p-sdgs__block:first-of-type {
    margin-top: 60px;
  }

  .p-sdgs__block:nth-of-type(even) {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-sdgs__block:nth-of-type(2) .c-block-text {
    width: 100%;
    max-width: 100%;
  }

  .p-sdgs-hint {
    padding: 50px 16px;
    margin: 80px auto 0;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    border-radius: 20px;
  }

  .p-sdgs-hint .hint-ttl {
    border-radius: 10px;
    top: -20px;
    font-size: 0.9375rem;
    padding: 8px 12px;
    gap: 8px;
    border-width: 2px;
  }

  .p-sdgs-hint .hint-ttl::before {
    width: 20px;
    height: 24px;
  }

  .p-sdgs-hint .hint-img {
    width: 100%;
  }

  .p-sdgs-hint .hint-text {
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
  }

  .p-sdgs-hint .hint-text p {
    letter-spacing: 0.02em;
  }
}

/* ---------------------------------------------
  news article
  --------------------------------------------- */
.p-news-article {
  padding: 90px 0 120px;
}

.p-news-article .l-wrap {
  max-width: 800px;
}

.p-news-article .c-btn {
  margin: 72px 0 0 auto;
}

.p-news-article__head {
  gap: 16px;
  margin-bottom: 24px;
}

.p-news-article__head::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #AB303E;
  border-radius: 8px;
  margin-top: 10px;
}

.p-news-article__head .date {
  font-weight: 300;
  margin-bottom: 8px;
  line-height: 1.2;
}

.p-news-article__ttl {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-news-article__eye-catch img {
  border-radius: 16px;
}

.p-news-article__body img {
  border-radius: 16px;
}

.p-news-article__body p {
  line-height: 2;
  margin-top: 30px;
}

.p-news-article__body p+p {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .p-news-article {
    padding: 60px 0 80px;
  }

  .p-news-article .c-btn {
    margin-top: 60px;
  }

  .p-news-article__head::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #AB303E;
    border-radius: 8px;
  }

  .p-news-article__ttl {
    font-size: 1.25rem;
  }
}

h3.wp-block-heading {
  font-size: 24px;
  margin-top: 40px;
}

h3.wp-block-heading+* {
  margin-top: 20px;
}

ul.wp-block-list {
  list-style: disc;
  padding-left: 24px;
  line-height: 1.5;
}

input#s {
  background: #fff;
  padding: 5px 19px;
  border-radius: 4px;
}

button.search-form__submit {
  appearance: auto ! IMPORTANT;
  background: #AB303E;
  padding: 5px 10px;
  color: #fff;
  font-weight: 500;
  border-radius: 4px;
}

section.p-contents-first.\34 04 .l-wrap {
  padding: 70px 0;
}