@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  color: #7A6354;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  background-color: #FFF9F6;
}

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

a {
  color: inherit;
}

/* デザイン仕様：装飾が左右にはみ出すため、ページの横スクロールを禁止 */
html,
body {
  overflow-x: hidden;
}

.l-inner {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-left: clamp(45px, 14.06vw - 90px, 90px);
    padding-right: clamp(45px, 14.06vw - 90px, 90px);
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-inner--contact {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.l-inner--header {
  width: 1280px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .l-inner--header {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner--header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen and (min-width: 768px) {
  .l-inner.p-download {
    padding-left: clamp(20px, 14.06vw - 90px, 90px);
    padding-right: clamp(20px, 14.06vw - 90px, 90px);
  }
}

.l-two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .l-two-column {
    margin-bottom: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(20px, 4.7vw, 60px);
  }
}
@media screen and (min-width: 768px) {
  .l-two-column__main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-two-column__aside {
    margin-top: 30px;
    width: clamp(200px, 25vw, 320px);
  }
}

.c-button {
  border-radius: 39px;
  background: #C9561D;
  color: #ffffff;
  padding: 16px clamp(10px, 3.73vw, 35px) 16px clamp(10px, 3.73vw, 35px);
  -webkit-box-shadow: 0 10px 15px -3px rgba(201, 86, 29, 0.2), 0 4px 6px -4px rgba(201, 86, 29, 0.2);
          box-shadow: 0 10px 15px -3px rgba(201, 86, 29, 0.2), 0 4px 6px -4px rgba(201, 86, 29, 0.2);
  font-size: clamp(13px, 3.2vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding: 16px 35px 16px 35px;
    font-size: 16px;
  }
}
.c-button:hover {
  background-color: #ffffff;
  color: #C9561D;
  border: 1px solid #C9561D;
}
.c-button:hover::after {
  color: #C9561D;
}
.c-button--white {
  background: white;
  color: #33271E;
  -webkit-box-shadow: 0 10px 15px -3px rgba(51, 22, 8, 0.2), 0 4px 6px -4px rgba(51, 22, 8, 0.2);
          box-shadow: 0 10px 15px -3px rgba(51, 22, 8, 0.2), 0 4px 6px -4px rgba(51, 22, 8, 0.2);
}
.c-button--white::after {
  color: #33271E;
}
.c-button--white:hover {
  background-color: #C9561D;
  color: #ffffff;
}
.c-button--white:hover::after {
  color: #ffffff;
}

.p-drawer {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 375px;
  height: 100%;
  position: fixed;
  top: 0px;
  right: 0px;
  background-color: #FFF9F6;
  z-index: 1000;
}
.p-drawer.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-drawer__logo {
  display: inline-block;
  margin-left: 30px;
  margin-top: 30px;
  width: 150px;
  height: 57px;
}
.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  padding-left: 70px;
  margin-top: 60px;
}
.p-drawer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid transparent;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-drawer__item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f07317;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.p-drawer__item:hover a,
.p-drawer__item:hover .p-drawer__desc {
  color: #f07317;
}
.p-drawer__item:hover::after {
  opacity: 0.5;
}
.p-drawer__item a {
  color: #33271E;
  font-family: "Patua One", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2.88px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-drawer__item span {
  color: #33271E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 5px;
  padding-bottom: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}
.p-drawer__desc {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  padding-left: 5px !important;
  padding-bottom: 5px !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.1em !important;
}
.p-drawer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 47px;
}
@media screen and (min-width: 768px) {
  .p-drawer__sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 28px;
  }
}

.p-header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding-left: clamp(45px, 7vw, 90px);
  padding-right: clamp(45px, 7vw, 90px);
}
@media screen and (max-width: 767px) {
  .p-header {
    display: none;
  }
}
.p-header__wrapper {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-header__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-header__logo {
  width: 32px;
  height: 42px;
}
.p-header__logo img {
  width: 100%;
  height: 100%;
}
.p-header__logo-text {
  color: #33271E;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.45px;
}
.p-header__link-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 2.73vw, 32px);
}
.p-header__nav-list .menu-item a {
  color: #33271E;
  font-size: 17px;
  font-style: normal;
  line-height: 1.42;
}
.p-header__nav-list .menu-item a::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f07317;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.p-header__nav-list .menu-item a:hover {
  color: #f07317;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-header__nav-list .menu-item a:hover::after {
  opacity: 0.5;
}
.p-header__nav-item {
  color: #33271E;
  font-size: 17px;
  font-style: normal;
  line-height: 1.42;
}
.p-header__nav-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f07317;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.p-header__nav-item:hover {
  color: #f07317;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-header__nav-item:hover::after {
  opacity: 0.5;
}

.p-drawer-button {
  display: block;
  position: fixed;
  top: 29px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #705F52;
  z-index: 1001;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .p-drawer-button {
    opacity: 0;
  }
}
.p-drawer-button.is-scrolled {
  opacity: 1;
}
.p-drawer-button.is-checked .p-drawer-button__bar:nth-child(1) {
  top: 30px;
  left: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-drawer-button.is-checked .p-drawer-button__bar:nth-child(2) {
  opacity: 0;
}
.p-drawer-button.is-checked .p-drawer-button__bar:nth-child(3) {
  top: 30px;
  left: 16px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-drawer-button__bar {
  position: absolute;
  display: block;
  width: 27px;
  height: 2.25px;
  background-color: #ffffff;
  margin-bottom: 4px;
  border-radius: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-drawer-button__bar:nth-child(1) {
  top: 22px;
}
.p-drawer-button__bar:nth-child(2) {
  top: 30px;
}
.p-drawer-button__bar:nth-child(3) {
  top: 38px;
}

.p-front-page__top-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-page__top-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 735px;
  }
}
.p-front-page__top-area::after {
  content: "";
  position: absolute;
  top: 8%;
  left: 23%;
  width: 77%;
  height: 100%;
  background-color: #888888;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-front-page__top-area::after {
    display: none;
  }
}
.p-front-page__slider {
  position: relative;
  height: 667px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider {
    height: 735px;
  }
}
.p-front-page__swiper {
  position: relative;
  height: 100%;
}
.p-front-page__slide {
  overflow: hidden;
  height: 100%;
}
.p-front-page__swiper-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: fvZoom 20s linear forwards;
          animation: fvZoom 20s linear forwards;
}
@-webkit-keyframes fvZoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  } /* 好みで 1.05〜1.12 */
}
@keyframes fvZoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  } /* 好みで 1.05〜1.12 */
}
.p-front-page__slider-logo {
  position: absolute;
  top: 32px;
  left: 21px;
  z-index: 1;
  width: 150px;
  height: 57px;
}
.p-front-page__slider-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-logo {
    display: none;
  }
}
.p-front-page__slider-textarea {
  position: absolute;
  bottom: 433px;
  left: 20px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-textarea {
    bottom: 50px;
    left: 51px;
  }
}
.p-front-page__slider-text {
  margin-top: 18px;
  color: #a06000;
  padding: 7px 0 0 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
          box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.52;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-text {
    font-size: 40px;
  }
}
.p-front-page__slider-pickup-area {
  width: clamp(200px, 89.4vw, 335px);
  position: relative;
  bottom: 156px;
  left: 20px;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-pickup-area {
    margin-left: auto;
    left: auto;
    right: 20px;
    bottom: 172px;
    width: 388px;
    padding: 16px;
  }
}
.p-front-page__slider-pickup-area .c-news-title__banner {
  position: absolute;
  top: 8px;
  left: -8px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-pickup-area .c-news-title__banner {
    top: 9px;
  }
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-pickup-area .c-news-title__banner .c-news-title__text {
    font-size: 12px;
  }
}
.p-front-page__slider-pickup-area .p-front-page__slider-popup {
  position: absolute;
  top: -44px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-pickup-area .p-front-page__slider-popup {
    top: -50px;
  }
}
.p-front-page__slider-pickup-area .p-news-card__img {
  width: 100px;
  aspect-ratio: 1/1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-pickup-area .p-news-card__img {
    width: 120px;
  }
}
.p-front-page__slider-pickup-area .p-news-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-page__slider-pickup-textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-front-page__slider-pickup-textarea .c-news-title__text {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.p-front-page__slider-pickup-textarea .p-news-card__date {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-front-page__slider-pickup-textarea .p-news-card__title {
    font-size: 14px;
  }
}

.p-front-page-fv {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv {
    padding-top: 73px;
  }
}
.p-front-page-fv__wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-front-page-fv__wrapper::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: url("../../img/front-page/fv/accent1.png") no-repeat center;
  background-size: contain;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__wrapper::after {
    top: -30%;
    width: 600px;
    height: 600px;
  }
}
.p-front-page-fv__wrapper::before {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -50%;
  width: 100px;
  height: 100px;
  background: url("../../img/front-page/fv/accent1.png") no-repeat center;
  background-size: cover;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__text-area {
    width: clamp(400px, 50.36vw, 500px);
  }
}
.p-front-page-fv__reception {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 16px 6px 32px;
  border-radius: 20px;
  border: 1px solid rgba(201, 86, 29, 0.2);
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__reception {
    margin-left: 0;
    padding: 8px 18px 8px 36px;
  }
}
.p-front-page-fv__reception-text {
  color: #A64213;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__reception-text {
    font-size: 14px;
  }
}
.p-front-page-fv__reception-text::after {
  content: "●";
  position: absolute;
  font-size: 12px;
  top: 0;
  left: -19px;
  color: #22C55E;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__reception-text::after {
    font-size: 14px;
  }
}
.p-front-page-fv__title {
  margin-top: 18px;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.12;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__title {
    margin-top: 24px;
    font-size: 40px;
  }
}
.p-front-page-fv__sub-title {
  margin-top: 20px;
  color: #C9561D;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__sub-title {
    margin-top: 24px;
    font-size: 22px;
  }
}
.p-front-page-fv__text {
  margin-top: 12px;
  color: #705f52;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__text {
    margin-top: 14px;
    font-size: 16px;
  }
}
.p-front-page-fv__text.greet {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__text.greet {
    margin-top: 24px;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__text.u-hidden-sp {
    font-size: 14px;
  }
}
.p-front-page-fv__button-area {
  margin-top: 40px;
  margin-bottom: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.p-front-page-fv__icon-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-area {
    width: clamp(300px, 39vw, 500px);
    margin-left: 0;
    min-width: 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;
  }
}
.p-front-page-fv__icon-card {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  border: 2px solid rgba(201, 86, 29, 0.3);
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-card {
    gap: 20px;
    width: clamp(270px, 23.45vw, 300px);
    height: clamp(270px, 23.45vw, 300px);
  }
}
.p-front-page-fv__icon-card::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url("../../img/front-page/fv/icon-accent1.png") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-card::after {
    width: 60px;
    height: 60px;
    right: -31px;
  }
}
.p-front-page-fv__icon-card::before {
  content: "";
  position: absolute;
  bottom: 11px;
  left: -22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url("../../img/front-page/fv/icon-accent2.png") no-repeat center;
  background-size: contain;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-card::before {
    width: 60px;
    height: 60px;
    left: -31px;
  }
}
.p-front-page-fv__icon-card-icon {
  border-radius: 50%;
  width: 110px;
  height: 110px;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-card-icon {
    width: 170px;
    height: 170px;
  }
}
.p-front-page-fv__icon-text-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 24px;
  padding: 5px 20px 5px 40px;
  background: white;
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-text-area {
    border-radius: 27px;
    padding: 8px 35px 8px 50px;
  }
}
.p-front-page-fv__icon-text-area::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 23px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: url("../../img/front-page/fv/icon-check.png") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-text-area::after {
    width: 16px;
    height: 16px;
  }
}
.p-front-page-fv__icon-name {
  color: #33271E;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.42;
}
@media screen and (min-width: 768px) {
  .p-front-page-fv__icon-name {
    font-size: 16px;
  }
}

.p-front-page-works {
  background-color: #fff;
  margin-top: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
.p-front-page-works__illust {
  width: 100px;
  position: absolute;
  top: 3%;
  right: 10%;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
}
@media screen and (min-width: 768px) {
  .p-front-page-works__illust {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
    width: 150px;
  }
}
.p-front-page-works__text {
  margin-top: 50px;
  color: #705F52;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-front-page-works__text {
    font-size: 16px;
  }
}
.p-front-page-works__items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-front-page-works__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.p-front-page-works__item {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.p-front-page-works__card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201, 86, 29, 0.1);
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.p-front-page-works__card-image {
  aspect-ratio: 337/192;
  overflow: hidden;
  border-radius: 20px, 20px, 0px, 0px;
}
.p-front-page-works__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-front-page-works__card-text-area {
  padding: 12px clamp(10px, 1.8vw, 24px);
  background: #fff9f6;
  border-radius: 0 0 20px 20px;
  border: 1px solid #f3f4f6;
}
.p-front-page-works__card-label-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-front-page-works__card-label-title {
  color: #C9561D;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
  border-radius: 19px;
  padding: 4px 12px;
  border: 1px solid rgba(201, 86, 29, 0.2);
  background: #fff;
}
.p-front-page-works__card-label-time {
  color: #705F52;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
}
.p-front-page-works__card-title {
  margin-top: 17px;
  color: #33271E;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.56;
}
.p-front-page-works__card-charge {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(7px, 1.88vw, 24px);
}
.p-front-page-works__card-charge-title {
  color: #705F52;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  white-space: nowrap;
}
.p-front-page-works__card-charge-item {
  color: #33271e;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
}
.p-front-page-works__card-button {
  margin-top: 15px;
  border-radius: 20px;
  border: 1px solid rgba(201, 86, 29, 0.3);
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-front-page-works__card-button:hover {
  background-color: rgb(201, 86, 29);
}
.p-front-page-works__card-button:hover .p-front-page-works__card-button-link {
  color: white;
}
.p-front-page-works__card-button-link {
  padding: 10px clamp(10px, 2.34vw, 30px);
  width: 100%;
  display: block;
  color: #C9561D;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}
.p-front-page-works__card-idpass {
  padding-left: 40px;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-front-page-works__card-id, .p-front-page-works__card-pass {
  color: #705F52;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
}
.p-front-page-works__button-area {
  margin-top: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.fade-in-up-seq {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
@media screen and (min-width: 1100px) {
  .fade-in-up-seq:nth-child(2) {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  .fade-in-up-seq:nth-child(3) {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  .fade-in-up-seq:nth-child(4) {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  .fade-in-up-seq:nth-child(5) {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}
.fade-in-up-seq.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 1100px) {
  .fade-in-up-seq.is-in-view:nth-child(1) {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .fade-in-up-seq.is-in-view:nth-child(2) {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .fade-in-up-seq.is-in-view:nth-child(3) {
    -webkit-transition-delay: 0.45s;
            transition-delay: 0.45s;
  }
  .fade-in-up-seq.is-in-view:nth-child(4) {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .fade-in-up-seq.is-in-view:nth-child(5) {
    -webkit-transition-delay: 0.75s;
            transition-delay: 0.75s;
  }
}

.p-front-page-can {
  margin-top: 50px;
  padding-bottom: 50px;
}
.p-front-page-can__items {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-front-page-can__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-front-page-can__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
}
.p-front-page-can__icon-image {
  width: 40px;
  height: 40px;
}
.p-front-page-can__icon-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-page-can__title {
  color: #33271E;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.p-front-page-can__text {
  margin-top: 10px;
  color: #705F52;
  font-weight: 400;
  line-height: 1.63;
}
.p-front-page-can__text.little {
  font-size: 13px;
  opacity: 0.8;
}

.p-front-page-story {
  padding-top: 50px;
  padding-bottom: 50px;
  background: white;
}
.p-front-page-story__image {
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 36px;
  overflow: hidden;
}
.p-front-page-story__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-page-story__text-area {
  margin-top: 30px;
  max-width: 700px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-front-page-story__text-area {
    padding-inline: clamp(0px, 16vw - 70px, 70px);
  }
}
@media screen and (min-width: 768px) {
  .p-front-page-story__text-area {
    max-width: 800px;
  }
}
.p-front-page-story__text {
  color: #705F52;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-front-page-story__text {
    font-size: 16px;
  }
}
.p-front-page-story__text + .p-front-page-story__text {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-front-page-story__text + .p-front-page-story__text {
    margin-top: 20px;
  }
}
.p-front-page-story__button-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 12px;
  border-radius: 16px;
  border: 1px solid rgba(201, 86, 29, 0.1);
  background: #FFF9F6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-front-page-story__button-area {
    padding: 14px 24px;
    gap: 20px;
  }
}
.p-front-page-story__button-area:hover {
  background: #ffe3d5;
}
.p-front-page-story__icon-image {
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .p-front-page-story__icon-image {
    width: 48px;
    height: 48px;
  }
}
.p-front-page-story__icon-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-page-story__button-title {
  color: #33271E;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.83;
}
@media screen and (min-width: 768px) {
  .p-front-page-story__button-title {
    font-size: 14px;
  }
}
.p-front-page-story__button-text {
  color: #705F52;
  font-weight: 400;
  line-height: 1.83;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-front-page-story__button-text {
    font-size: 14px;
  }
}

.p-front-page-value {
  padding-top: 50px;
  padding-bottom: 50px;
}
.p-front-page-value__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-front-page-value__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-front-page-value__text-area {
    margin-top: 100px;
  }
}
.p-front-page-value__text {
  margin-top: 50px;
  color: #705F52;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
}
@media screen and (min-width: 768px) {
  .p-front-page-value__text {
    margin-top: 70px;
    font-size: 16px;
  }
}
.p-front-page-value__link {
  display: inline-block;
  margin-top: 26px;
  color: #C9561D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-front-page-value__link {
    font-size: 16px;
    margin-top: 32px;
  }
}
.p-front-page-value__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: 24px;
}
.p-front-page-value__card {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #f3f4f6;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-front-page-value__card {
    border-radius: 24px;
    padding: 24px;
    gap: 24px;
  }
}
.p-front-page-value__icon-image {
  width: 50px;
  height: 50px;
}
.p-front-page-value__icon-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-page-value__card-title {
  color: #33271E;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .p-front-page-value__card-title {
    font-size: 18px;
  }
}
.p-front-page-value__card-text {
  margin-top: 8px;
  color: #705F52;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42;
}
@media screen and (min-width: 768px) {
  .p-front-page-value__card-text {
    margin-top: 6px;
    font-size: 14px;
  }
}

.p-front-page-process {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.p-front-page-process__step-area {
  margin-top: 60px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__step-area {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-front-page-process__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.p-front-page-process__step:last-child .p-front-page-process__icon::after {
  display: none;
}
.p-front-page-process__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-front-page-process__icon {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__icon {
    width: 90px;
    height: 90px;
  }
}
.p-front-page-process__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-front-page-process__icon::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 47px;
  left: 24px;
  width: 2px;
  height: 115px;
  background: #e5e7eb;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__icon::after {
    width: 200px;
    height: 3px;
    left: 88px;
  }
}
.p-front-page-process__title {
  color: #33271E;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__title {
    font-size: 18px;
  }
}
.p-front-page-process__text-point {
  margin-top: 7px;
  color: #705F52;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.62;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__text-point {
    font-size: 14px;
  }
}
.p-front-page-process__text {
  margin-top: 2px;
  color: #705F52;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.62;
}
@media screen and (min-width: 900px) {
  .p-front-page-process__text {
    font-size: 14px;
  }
}

.p-front-page-attempt {
  padding-top: 50px;
  padding-bottom: 50px;
}
.p-front-page-attempt__text-area {
  margin-top: 60px;
  padding: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  border: 1px solid rgba(201, 86, 29, 0.1);
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-front-page-attempt__text-area {
    padding: 32px;
    border-radius: 16px;
  }
}
.p-front-page-attempt__text-title {
  color: #33271E;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .p-front-page-attempt__text-title {
    font-size: 18px;
  }
}
.p-front-page-attempt__text {
  margin-top: 20px;
  color: #705F52;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
}
@media screen and (min-width: 768px) {
  .p-front-page-attempt__text {
    font-size: 16px;
    margin-top: 25px;
  }
}

.p-title__area {
  position: relative;
}
.p-title__area::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 64px;
  height: 4px;
  background-color: rgba(201, 86, 29, 0.3);
}
.p-title__main {
  margin-top: 8px;
  color: #33271E;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.11;
}
@media screen and (min-width: 768px) {
  .p-title__main {
    font-size: 36px;
  }
}
.p-title__sub {
  color: #C9561D;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.7px;
}
@media screen and (min-width: 768px) {
  .p-title__sub {
    font-size: 14px;
  }
}

.p-cta {
  padding-top: 34px;
  padding-bottom: 34px;
}
.p-cta__wrapper {
  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;
  background: rgba(248, 235, 228, 0.4);
  padding: 24px;
  border-radius: 24px;
}
.p-cta__reception-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 16px 5px 32px;
  border-radius: 20px;
  border: 1px solid rgba(201, 86, 29, 0.2);
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-cta__reception-area {
    padding: 6px 18px 6px 36px;
  }
}
.p-cta__reception-text {
  color: #A64213;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta__reception-text {
    font-size: 13px;
  }
}
.p-cta__reception-text::after {
  content: "●";
  position: absolute;
  font-size: 11px;
  top: 0;
  left: -19px;
  color: #22C55E;
}
@media screen and (min-width: 768px) {
  .p-cta__reception-text::after {
    font-size: 13px;
  }
}
.p-cta__icon-area {
  margin-top: 19px;
  width: 25px;
  height: 20px;
}
.p-cta__icon-area img {
  width: 100%;
  height: auto;
}
.p-cta__title {
  margin-top: 42px;
  text-align: center;
  color: #33271E;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.11;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    margin-top: 36px;
    font-size: 32px;
  }
}
.p-cta__text {
  color: #705F52;
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    font-size: 16px;
  }
}
.p-cta__button-area {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-cta__button-area {
    margin-top: 45px;
  }
}
.p-cta__comment {
  margin-top: 24px;
  color: #705F52;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.33;
}

.p-footer {
  padding-block: 20px;
  border-top: 1px solid #f0e6dd;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block: 40px;
  }
}
.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.p-footer__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-footer__logo {
  width: 32px;
  height: 42px;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
}
.p-footer__logo-text {
  color: #33271E;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
  letter-spacing: -0.45px;
}
.p-footer__text {
  color: #705F52;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42;
}
@media screen and (min-width: 768px) {
  .p-footer__text {
    font-size: 14px;
  }
}
.p-footer__copy {
  margin-top: 6px;
  color: #705F52;
  text-align: right;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    font-size: 14px;
    line-height: 1.42;
  }
}
.p-footer__to-top-button {
  position: fixed;
  right: 8px;
  bottom: 10px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  opacity: 0.9;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__to-top-button {
    right: 17px;
    bottom: 19px;
  }
}
.p-footer__to-top-button img {
  border-radius: 50%;
}

.p-service-fv {
  background: #f8f5f2;
  padding-top: 15px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-service-fv {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
.p-service-fv__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-service-fv__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-service-fv__text {
  margin-top: 12px;
  color: #7A6354;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-service-fv__text {
    margin-top: 13px;
    font-size: 16px;
  }
}
.p-service-fv__text.first {
  font-size: 18px;
  font-weight: 700;
  color: #C9561D;
}
.p-service-fv__button-twin-area {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 900px) {
  .p-service-fv__button-twin-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}
.p-service-fv__button-twin-area.top-page {
  margin-top: 70px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 900px) {
  .p-service-fv__button-twin-area.top-page {
    margin-top: 80px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-service-fv__button-area.contact {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-service-fv__image-area {
    display: none;
  }
}
.p-service-fv__image {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 576/432;
}
@media screen and (min-width: 768px) {
  .p-service-fv__image {
    max-width: 576px;
    width: clamp(300px, 90vw - 576px, 576px);
  }
}
.p-service-fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-menu {
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-service-menu {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.p-service-menu__menu-area {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-service-menu__menu-area {
    margin-top: 50px;
  }
}
.p-service-menu__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: 30px;
}
@media screen and (min-width: 768px) {
  .p-service-menu__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
.p-service-menu__card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2d6cc;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.p-service-menu__image {
  aspect-ratio: 382/192;
  overflow: hidden;
  border-radius: 20px, 20px, 0px, 0px;
}
.p-service-menu__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-service-menu__text-area {
  padding: 15px clamp(10px, 1.95vw, 25px) 20px;
  background: white;
  border-radius: 0 0 16px 16px;
}
.p-service-menu__card-label {
  border-radius: 16px;
  background: rgba(201, 86, 29, 0.1);
  padding: 0px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-service-menu__card-label--dark {
  background: #f3ede7;
}
.p-service-menu__card-label-title {
  color: #C9561D;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .p-service-menu__card-label-title {
    font-size: 12px;
    line-height: 1.33;
  }
}
.p-service-menu__card-label-title--dark {
  color: #705F52;
}
.p-service-menu__title {
  margin-top: 16px;
  color: #33271E;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-service-menu__title {
    font-size: 20px;
    margin-top: 20px;
  }
}
.p-service-menu__card-text {
  margin-top: 10px;
  color: #7A6354;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-service-menu__card-text {
    margin-top: 12px;
    font-size: 16px;
  }
}
.p-service-menu__card-text.check {
  margin-top: 0;
}
.p-service-menu__card-list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .p-service-menu__card-list {
    margin-top: 25px;
    gap: 8px;
  }
}
.p-service-menu__card-item {
  color: #33271E;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42;
  position: relative;
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .p-service-menu__card-item {
    font-size: 14px;
  }
}
.p-service-menu__card-item::before {
  content: "";
  position: absolute;
  top: 55%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url("../../img/service/fv.menu/check-icon.png") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-service-menu__card-item::before {
    width: 15px;
    height: 15px;
  }
}

.p-service-price {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-service-price {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.p-service-price__text {
  margin-top: 45px;
  color: #7A6354;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.p-service-price__text span {
  color: #C9561D;
}
.p-service-price__list-area {
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-service-price__list-area {
    margin-top: 50px;
  }
}
.p-service-price__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: 24px;
}
.p-service-price__card {
  max-width: 700px;
  height: 165px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 13px;
  border: 1px solid #e2d6cc;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: clamp(10px, 3.4vw, 20px);
  padding-inline: 12px;
  padding-block: 20px;
}
@media screen and (min-width: 768px) {
  .p-service-price__card {
    padding: 24px;
    gap: 30px;
    border-radius: 32px;
    height: 180px;
  }
}
.p-service-price__image-area {
  width: 30%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-service-price__img {
  width: clamp(80px, 25vw, 130px);
  height: clamp(80px, 25vw, 130px);
  aspect-ratio: 1/1;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-service-price__img {
    width: 150px;
    height: 150px;
  }
}
.p-service-price__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-service-price__text-area {
  width: 70%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-service-price__service-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-service-price__service-title {
  color: #33271E;
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-service-price__service-title {
    font-size: 18px;
  }
}
.p-service-price__service-point {
  color: #7A6354;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.42;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-service-price__service-point {
    font-size: 14px;
  }
}
.p-service-price__price-area {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-service-price__price-label {
  color: #7A6354;
  text-align: right;
  font-size: clamp(10px, 2.93vw, 14px);
  font-weight: 500;
  line-height: 1.42;
}
@media screen and (min-width: 768px) {
  .p-service-price__price-label {
    font-size: 14px;
  }
}
.p-service-price__price-how {
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-service-price__price-how {
    margin-top: 5px;
  }
}
.p-service-price__price {
  color: #33271E;
  text-align: right;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (min-width: 768px) {
  .p-service-price__price {
    font-size: 24px;
  }
}
.p-service-price__price-zei {
  color: #2d241e;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-service-price__price-zei {
    font-size: 16px;
  }
}
.p-service-price__comment-area {
  margin-top: 30px;
}
.p-service-price__monitor {
  color: #7A6354;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.p-service-price__monitor span {
  color: #C9561D;
}
.p-service-price__button-area {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.p-service-faq {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-service-faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.p-service-faq__list-area {
  margin-top: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.p-service-faq__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: 30px;
}
.p-service-faq__item {
  width: 100%;
}
.p-service-faq__card {
  padding: 18px 18px 0 18px;
  border-radius: 25px;
  border: 1px solid #e2d6cc;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-service-faq__card {
    padding: 24px 24px 0 24px;
    border-radius: 32px;
  }
}
.p-service-faq__q-area {
  padding-bottom: 12px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-service-faq__q-area {
    padding-bottom: 20px;
  }
}
.p-service-faq__q-area.is-open .p-service-faq__q-text {
  color: #A64213;
}
.p-service-faq__q-area.is-open .p-service-faq__icon-bar {
  background-color: #A64213;
}
.p-service-faq__q-area.is-open .p-service-faq__icon-bar:nth-last-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-service-faq__q-area.is-open .p-service-faq__icon-bar:nth-last-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}
.p-service-faq__q-text {
  color: #33271E;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-service-faq__q-text {
    font-size: 18px;
  }
}
.p-service-faq__a-area {
  padding-top: 12px;
  padding-left: 20px;
  border-top: 1px solid #e0e0e0;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-service-faq__a-area {
    padding-left: 50px;
    padding-top: 20px;
  }
}
.p-service-faq__a-text {
  color: #33271E;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .p-service-faq__a-text {
    font-size: 16px;
    padding-bottom: 24px;
  }
}
.p-service-faq__icon {
  width: 21px;
  height: 21px;
  margin-right: 8px;
  margin-left: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-service-faq__icon {
    margin-right: 13px;
  }
}
.p-service-faq__icon-bar {
  position: absolute;
  width: 21px;
  height: 2px;
  background-color: #7A6354;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-service-faq__icon-bar:nth-last-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.p-work-fv {
  padding-top: 15px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-work-fv {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
.p-work-fv__text-area {
  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-work-fv__text {
  margin-top: 12px;
  color: #7A6354;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-work-fv__text {
    margin-top: 13px;
    font-size: 16px;
  }
}
.p-work-fv__text.first {
  font-size: 18px;
  font-weight: 700;
  color: #C9561D;
}

.p-work-case__title {
  color: #33271E;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  margin-left: 30px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7dbcf;
}
.p-work-case__title::before {
  content: "";
  position: absolute;
  top: 42%;
  left: -29px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("../../../img/works/icon1.png") no-repeat center center;
  background-size: cover;
}
.p-work-case__items {
  margin-top: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-work-case__items {
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
.p-work-case__card {
  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;
  border-radius: 24px;
  border: 1px solid #e7dbcf;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 900px) {
  .p-work-case__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 48px;
  }
}
.p-work-case__image-area {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
@media screen and (min-width: 900px) {
  .p-work-case__image-area {
    border-radius: 48px 0 0 48px;
    height: 633px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 clamp(300px, 31vw, 400px);
            flex: 0 0 clamp(300px, 31vw, 400px);
  }
}
.p-work-case__image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 900px) {
  .p-work-case__image-area img {
    border-radius: 48px 0 0 48px;
  }
}
.p-work-case__image-label {
  position: absolute;
  top: 18px;
  left: 21px;
  border-radius: 9px;
  background: #C9561D;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.33;
  padding: 4px 12px;
}
@media screen and (min-width: 768px) {
  .p-work-case__image-label {
    top: 26px;
    left: 34px;
    font-size: 12px;
  }
}
.p-work-case__text-area {
  padding: clamp(10px, 3vw, 30px);
}
@media screen and (min-width: 900px) {
  .p-work-case__text-area {
    padding: clamp(15px, 2.5vw, 35px);
  }
}
.p-work-case__label {
  border-radius: 6px;
  background: #fcf9f7;
  padding: 4px 12px;
  margin-bottom: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-work-case__label-text {
  color: #705F52;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}
.p-work-case__card-title {
  color: #33271E;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-work-case__card-title {
    font-size: 30px;
  }
}
.p-work-case__card-incard {
  border-radius: 16px;
  border: 1px solid #f3ede7;
  background: #fdfcfb;
  padding: clamp(8px, 2.67vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-work-case__card-incard {
    padding: 24px;
    border-radius: 32px;
  }
}
.p-work-case__card-assignment {
  padding-bottom: 20px;
  border-bottom: 1px dotted #e7dbcf;
}
.p-work-case__card-assignment-title, .p-work-case__card-measures-title {
  padding-left: 16px;
  margin-bottom: 8px;
  color: #C9561D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
  position: relative;
}
.p-work-case__card-assignment-title::before, .p-work-case__card-measures-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 14px;
  background-size: cover;
}
.p-work-case__card-assignment-title::before {
  background: url("../../../img/works/icon4.png") no-repeat center center;
}
.p-work-case__card-measures-title::before {
  background: url("../../../img/works/icon5.png") no-repeat center center;
}
.p-work-case__card-assignment-text {
  color: #33271E;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
}
@media screen and (min-width: 768px) {
  .p-work-case__card-assignment-text {
    font-size: 16px;
  }
}
.p-work-case__card-measures-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.p-work-case__card-measures-item {
  color: #33271E;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  margin-left: 15px;
  position: relative;
}
.p-work-case__card-measures-item::before {
  content: "・";
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-work-study {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .p-work-study {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.p-work-study__title {
  color: #33271E;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  margin-left: 30px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7dbcf;
}
.p-work-study__title::before {
  content: "";
  position: absolute;
  top: 42%;
  left: -29px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("../../../img/works/icon2.png") no-repeat center center;
  background-size: cover;
}
.p-work-study__items {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-work-study__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .p-work-study__items {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.p-work-study__card {
  border-radius: 24px;
  border: 1px solid #e7dbcf;
  background: #fcfbf9;
  padding: clamp(10px, 3.73vw, 24px);
}
@media screen and (min-width: 768px) {
  .p-work-study__card {
    border-radius: 48px;
  }
}
.p-work-study__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-work-study__label-text {
  border-radius: 16px;
  border: 1px solid #705F52;
  padding: 2px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #705F52;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 1.2px;
}
.p-work-study__time {
  color: #7A6354;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
}
.p-work-study__card-title {
  color: #33271E;
  margin-top: 8px;
  margin-bottom: 3px;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
.p-work-study__charge {
  color: #705F52;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
}
.p-work-study__charge-value {
  color: #705F52;
  font-size: 14px;
  font-weight: 400;
  line-height: 0.8;
  padding-bottom: 16px;
  border-bottom: 1px dotted #d6c7b9;
}
.p-work-study__function-list {
  margin-top: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-work-study__function-list {
    height: 114px;
  }
}
@media screen and (min-width: 1100px) {
  .p-work-study__function-list {
    height: 114px;
  }
}
.p-work-study__function-item {
  color: #705F52;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
  padding-left: 15px;
  position: relative;
}
.p-work-study__function-item::before {
  content: "・";
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: -2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-work-study__idpass {
  color: #705F52;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.62;
  margin-left: 15px;
}
.p-work-study__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}
.p-work-study__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}

.p-work-media__title {
  color: #33271E;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
  margin-left: 30px;
  position: relative;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7dbcf;
}
.p-work-media__title::before {
  content: "";
  position: absolute;
  top: 42%;
  left: -29px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("../../../img/works/icon3.png") no-repeat center center;
  background-size: cover;
}
.p-work-media__items {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-work-media__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-work-media__item {
    gap: 20px;
  }
}
.p-work-media__card {
  border-radius: 16px;
  background: #f0ece9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e7dbcf;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: clamp(10px, 3vw, 24px);
  gap: 15px;
}
@media screen and (min-width: 900px) {
  .p-work-media__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-radius: 48px;
    gap: clamp(17px, 2vw, 30px);
  }
}
.p-work-media__label {
  color: #fff;
  font-size: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  line-height: 1;
  border-radius: 15px;
  background: #f07317;
  padding: 4px 12px;
}
.p-work-media__card-title {
  margin-top: 10px;
  color: #33271E;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (min-width: 768px) {
  .p-work-media__card-title {
    margin-top: 20px;
  }
}
.p-work-media__card-message-area {
  margin-top: 5px;
}
.p-work-media__card-text {
  margin-top: 8px;
  color: #705F52;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.32;
}
@media screen and (min-width: 768px) {
  .p-work-media__card-text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.62;
  }
}
.p-work-media__features-lists {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) {
  .p-work-media__features-lists {
    margin-left: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-left: 0px;
  }
}
.p-work-media__features-item {
  color: #33271E;
  margin-left: 15px;
  font-size: clamp(13px, 1.17vw, 15px);
  font-weight: 500;
  line-height: 1.43;
  position: relative;
}
.p-work-media__features-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
}
.p-work-media__features-item.item1::before {
  background: url("../../../img/works/icon6.png") no-repeat center center;
}
.p-work-media__features-item.item2::before {
  background: url("../../../img/works/icon7.png") no-repeat center center;
}
.p-work-media__features-item.item3::before {
  background: url("../../../img/works/icon8.png") no-repeat center center;
}
.p-work-media__features-item.item4::before {
  background: url("../../../img/works/icon8.png") no-repeat center center;
}
.p-work-media__image-area {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .p-work-media__image-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
  }
}
.p-work-media__image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.p-news__title {
  margin-top: 35px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #33271E;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    margin-top: 70px;
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.p-news__text {
  color: #705F52;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  padding-top: 20px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-news__text {
    padding-top: 30px;
    padding-bottom: 40px;
    font-size: 20px;
  }
}
.p-news__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: 20px;
}
.p-news__search-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #33271E;
}
@media screen and (min-width: 768px) {
  .p-news__search-title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.p-news__search-title-query {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-news__search-title-query {
    font-size: 30px;
  }
}

.p-entry-card {
  border-radius: 24px;
  border: 1px solid rgba(209, 106, 27, 0.05);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-entry-card {
    border-radius: 24px;
    padding: 24px;
    gap: 24px;
  }
}
.p-entry-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.p-entry-card__tag {
  color: #C9561D;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 9px;
  background: rgba(209, 106, 27, 0.1);
  padding: 2px 12px;
}
.p-entry-card__published {
  color: #705F52;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
}
.p-entry-card__title {
  margin-top: 12px;
  color: #33271E;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.37;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-entry-card__title {
    font-size: 20px;
  }
}
.p-entry-card__text {
  margin-top: 12px;
  color: #705F52;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-entry-card__text {
    font-size: 14px;
  }
}

.p-pagination {
  margin-top: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-pagination {
    margin-top: 60px;
  }
}
.p-pagination .page-numbers {
  margin-left: 6px;
  margin-right: 6px;
  background-color: #f8f8f8;
  color: #7A6354;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #705F52;
  line-height: 40px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
}
.p-pagination .page-numbers:hover, .p-pagination .page-numbers.current {
  background-color: #C9561D;
  border: 1px solid #C9561D;
  color: #fff;
}
.p-pagination .next {
  position: relative;
}
.p-pagination .next::after {
  content: ">";
  color: #33271E;
  position: absolute;
  top: -2px;
  left: 13px;
  font-size: 22px;
}
.p-pagination .prev {
  position: relative;
}
.p-pagination .prev::after {
  content: "<";
  color: #33271E;
  position: absolute;
  top: -2px;
  left: 12px;
  font-size: 22px;
}

.p-sidebar-pickup.single {
  margin-top: 32px;
}
.p-sidebar-pickup {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-sidebar-pickup {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-sidebar-pickup__title {
  color: #33271E;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 8px;
  position: relative;
}
.p-sidebar-pickup__title::after {
  content: "";
  display: block;
  top: 5px;
  left: -5px;
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background-color: #C9561D;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.p-sidebar-pickup__items {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.p-sidebar__nav {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-sidebar__nav {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-sidebar__nav-title {
  color: #33271E;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 8px;
  position: relative;
}
.p-sidebar__nav-title::after {
  content: "";
  display: block;
  top: 5px;
  left: -5px;
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background-color: #C9561D;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.p-sidebar__nav-list {
  color: #33271E;
  font-size: 14px;
  line-height: 1.42;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.p-sidebar-search {
  background: white;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-sidebar-search {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-sidebar-search__title {
  color: #33271E;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 8px;
  position: relative;
}
.p-sidebar-search__title::after {
  content: "";
  display: block;
  top: 5px;
  left: -5px;
  width: 4px;
  height: 24px;
  border-radius: 2px;
  background-color: #C9561D;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.widget_block {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .widget_block {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.wp-block-categories .cat-item {
  margin-bottom: 5px;
  color: #33271E;
}

.wp-block-search__inside-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wp-block-search__input {
  width: 100%;
  height: 35px;
  padding: 10px;
  border: 1px solid #888888;
  border-radius: 4px;
}

.wp-block-search__button {
  padding: 5px;
  background-color: #33271E;
  color: white;
  font-size: 12px;
  height: 35px;
  width: 60px;
  letter-spacing: 0.2em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.wp-block-search__button:hover {
  background-color: #C9561D;
}

.wp-block-search__label {
  width: auto;
}

.p-sidebar-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: 96%;
}
@media screen and (min-width: 768px) {
  .p-sidebar-card {
    width: 100%;
  }
}
.p-sidebar-card__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35.71%;
          flex: 0 0 35.71%;
  aspect-ratio: 1/1;
}
.p-sidebar-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-sidebar-card__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-sidebar-card__textarea {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 59.28%;
            flex: 0 0 59.28%;
  }
}
.p-sidebar-card__title {
  color: #33271E;
  font-size: clamp(11px, 3.74vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* ← 3行まで */
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-sidebar-card__title {
    font-size: clamp(11px, 1.09vw, 14px);
  }
}
.p-sidebar-card__date {
  font-size: 12px;
  line-height: 1.5;
}

.p-single-eyecatch-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 688px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-single-eyecatch-card {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-single-eyecatch-card {
    gap: 20px;
  }
}
.p-single-eyecatch-card__img {
  width: 100%;
  aspect-ratio: 335/176;
}
.p-single-eyecatch-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-single-eyecatch-card__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.p-single-eyecatch-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-single-eyecatch-card__title {
    font-size: 28px;
  }
}
.p-single-eyecatch-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 41px;
  margin-bottom: 8px;
}
.p-single-eyecatch-card__date, .p-single-eyecatch-card__category {
  color: #705F52;
  font-size: 14px;
  line-height: 1.5;
}
.p-single-eyecatch-card__category {
  color: #f07317;
  font-size: 12px;
  line-height: 1.33;
  border-radius: 9px;
  background: rgba(209, 106, 27, 0.1);
  padding: 4px 12px;
  font-weight: 700;
}
.p-single-eyecatch-card__date {
  color: #705F52;
}

.p-single__content {
  margin-top: 40px;
  margin-bottom: 38px;
}
@media screen and (min-width: 768px) {
  .p-single__content {
    max-width: 688px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-single__content h2 {
  color: #7A6354;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 10px;
  border-left: 6px solid #f07317;
  margin-top: 40px;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .p-single__content h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.p-single__content h3 {
  color: #7A6354;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #f07317;
}
@media screen and (min-width: 768px) {
  .p-single__content h3 {
    font-size: 20px;
  }
}
.p-single__content h4 {
  color: #7A6354;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-single__content h4 {
    font-size: 16px;
  }
}
.p-single__content h5 {
  color: #7A6354;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 14px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-single__content h5 {
    font-size: 16px;
  }
}
.p-single__content p {
  line-height: 2;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .p-single__content p {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.p-single__content ul,
.p-single__content ol {
  list-style-position: outside;
  padding-left: 1.5em;
  margin-top: 14px;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .p-single__content ul,
  .p-single__content ol {
    font-size: 16px;
  }
}
.p-single__content ul li {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single__content ul li {
    font-size: 16px;
    line-height: 2.1;
  }
}
.p-single__content ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background: url("../../img/single/icon.png") no-repeat center center;
  background-size: cover;
  border-radius: 50%;
}
.p-single__content ol {
  list-style-type: decimal;
}
.p-single__content ol li {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-single__content ol li {
    font-size: 16px;
    line-height: 2.1;
  }
}
.p-single__content figure {
  margin-bottom: 14px;
  width: 100%;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
}
.p-single__content figure img {
  width: 100%;
  height: auto;
}
.p-single__content aside {
  background: #f7f5f2;
  border-left: 4px solid #d88b2a;
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
}
.p-single__relative {
  margin-top: 3cap;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-single__relative {
    margin-top: 80px;
    max-width: 688px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-single__relative-title {
  color: #33271E;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-single__relative-title {
    font-size: 32px;
  }
}
.p-single__relative-items {
  margin-top: 25px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .p-single__relative-items {
    margin-top: 30px;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-single__no-relative-text {
  margin-top: 20px;
  color: #705F52;
  text-align: center;
  font-size: 18px;
}

.p-post-nav {
  padding-inline: clamp(0px, 2.67vw, 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-post-nav {
    padding-inline: 50px;
    max-width: 688px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-post-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 9px 0px;
  text-decoration: none;
  color: #7A6354;
  font-size: 14px;
  line-height: 1;
}
.p-post-nav__link:hover {
  opacity: 0.7;
}
.p-post-nav__link--list {
  border: 1px solid #7A6354;
  padding: 16px clamp(5px, 28.8vw - 72px, 36px);
}

.p-post-nav__placeholder--prev,
.p-post-nav__placeholder--next {
  width: 68px;
}

.p-contact {
  margin-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
  }
}
.p-contact__text-area {
  text-align: center;
}
.p-contact__title {
  margin-top: 15px;
  color: #7A6354;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 28px;
    margin-top: 20px;
  }
}
.p-contact__text {
  margin-top: 21px;
  color: #7A6354;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 16px;
    margin-top: 23px;
  }
}
.p-contact__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-contact__fields {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__fields {
    margin-top: 82px;
  }
}
.p-contact__field {
  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;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-contact__field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 27px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__field:nth-child(1), .p-contact__field:nth-child(5) {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-contact__label {
  color: #7A6354;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 170px;
            flex: 0 0 170px;
  }
}
.p-contact__input {
  width: 100%;
}
.p-contact__select {
  width: 100%;
}
.p-contact__required {
  color: var(--cr-white, #fff);
  font-family: "Noto Serif JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 16.5px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 34px;
  height: 19px;
  padding: 1px 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 2px;
  background: var(--cr-accent, #f07317);
}
@media screen and (min-width: 768px) {
  .p-contact .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.p-contact__radio-input {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 768px) {
  .p-contact__radio-input {
    margin-top: 0;
  }
}
.p-contact .wpcf7-list-item-label {
  color: #7A6354;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}
.p-contact .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 45%;
  left: -32px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #7A6354;
  border-radius: 2px;
  background: var(--cr-white, #fff);
}
.p-contact .wpcf7-list-item-label::before {
  content: "✔";
  position: absolute;
  top: -15%;
  left: -31.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  font-size: 26px;
  color: #C9561D;
  opacity: 0;
  z-index: 1;
}
.p-contact input {
  cursor: pointer;
}
.p-contact input:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}
.p-contact .wpcf7-list-item {
  margin-left: 33px;
}
.p-contact .wpcf7-list-item input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.p-contact .wpcf7-list-item a {
  font-weight: 700;
  border-bottom: 1.5px solid #705F52;
}
.p-contact .wpcf7-text {
  margin-top: 20px;
  height: 48px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid #7A6354;
  background: white;
}
@media screen and (min-width: 768px) {
  .p-contact .wpcf7-text {
    margin-top: 0;
  }
}
.p-contact .wpcf7-text::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact .wpcf7-text::-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact .wpcf7-text:-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact .wpcf7-text::-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact .wpcf7-text::placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact__textarea {
  margin-top: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 200px;
  padding: 12px 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 6px;
  border: 1px solid #7A6354;
  background: white;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    margin-top: 0;
    height: 239px;
  }
}
.p-contact__textarea::-webkit-input-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact__textarea::-moz-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact__textarea:-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact__textarea::-ms-input-placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact__textarea::placeholder {
  color: #ccc;
  font-size: 16px;
  line-height: 1.5;
}
.p-contact__text-last {
  color: #7A6354;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.p-contact .wpcf7-submit {
  border-radius: 39px;
  background: #C9561D;
  color: #ffffff;
  padding: 10px 35px 10px 35px;
  -webkit-box-shadow: 0 10px 15px -3px rgba(201, 86, 29, 0.2), 0 4px 6px -4px rgba(201, 86, 29, 0.2);
          box-shadow: 0 10px 15px -3px rgba(201, 86, 29, 0.2), 0 4px 6px -4px rgba(201, 86, 29, 0.2);
  font-size: 14px;
  margin-left: 48px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact .wpcf7-submit {
    font-size: 16px;
  }
}
.p-contact .wpcf7-submit:hover {
  background-color: #ffffff;
  color: #C9561D;
  border: 1px solid #C9561D;
}
.p-contact .wpcf7-submit:hover::after {
  color: #C9561D;
}
.p-contact__acceptance {
  text-align: center;
}
.p-contact__button-area {
  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;
}
.p-contact__submit {
  border-radius: 39px;
  background: #C9561D;
  color: #ffffff;
  padding: 10px 52px 10px 35px;
  -webkit-box-shadow: 0 10px 15px -3px rgba(201, 86, 29, 0.2), 0 4px 6px -4px rgba(201, 86, 29, 0.2);
          box-shadow: 0 10px 15px -3px rgba(201, 86, 29, 0.2), 0 4px 6px -4px rgba(201, 86, 29, 0.2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    font-size: 16px;
  }
}
.p-contact__submit::after {
  content: "\f101";
  font-family: "Font Awesome 5 Free", sans-serif;
  position: absolute;
  top: 29%;
  right: 27px;
  font-size: 14px;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-contact__submit::after {
    font-size: 16px;
  }
}
.p-contact__submit:hover {
  background-color: #ffffff;
  color: #C9561D;
  border: 1px solid #C9561D;
}
.p-contact__submit:hover::after {
  color: #C9561D;
}
.p-contact__text-area {
  margin-top: 15px;
}
.p-contact__replay-text, .p-contact__storage-text {
  color: #7A6354;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.33;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}
.p-contact__replay-text::after, .p-contact__storage-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-size: contain;
}
.p-contact__replay-text::after {
  background: url("../../../img/contact/icon1.png") no-repeat center center;
}
.p-contact__storage-text::after {
  background: url("../../../img/contact/icon2.png") no-repeat center center;
}

.p-contact-thanks {
  padding-top: 15px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}
.p-contact-thanks__title {
  color: #33271E;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: -1.2px;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__title {
    font-size: 36px;
  }
}
.p-contact-thanks__text {
  margin-top: 16px;
  color: #7A6354;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__text {
    font-size: 18px;
  }
}
.p-contact-thanks__message-box {
  margin-top: 35px;
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(209, 106, 27, 0.1);
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__message-box {
    margin-top: 48px;
    padding: 40px 40px 40px 65px;
    border-radius: 48px;
  }
}
.p-contact-thanks__box-text1, .p-contact-thanks__box-text2 {
  color: #33271E;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.p-contact-thanks__box-text1::after, .p-contact-thanks__box-text2::after {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  height: 17px;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__box-text1::after, .p-contact-thanks__box-text2::after {
    left: -15px;
    width: 22px;
    height: 19px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__box-text1, .p-contact-thanks__box-text2 {
    font-size: 16px;
    padding-left: 16px;
  }
}
.p-contact-thanks__box-text1::after {
  background: url("../../img/contact-thanks/icno1.png") no-repeat center center;
}
.p-contact-thanks__box-text2 {
  margin-top: 15px;
}
.p-contact-thanks__box-text2::after {
  background: url("../../img/contact-thanks/icno2.png") no-repeat center center;
}
.p-contact-thanks__box-text-memo {
  margin-top: 12px;
  color: #33271E;
  font-size: 12px;
  line-height: 1.62;
  position: relative;
  padding-left: 14px;
}
.p-contact-thanks__box-text-memo::after {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  height: 17px;
  background: url("../../img/contact-thanks/icno3.png") no-repeat center center;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__box-text-memo::after {
    width: 22px;
    height: 19px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__box-text-memo {
    margin-top: 15px;
    font-size: 14px;
    padding-left: 16px;
  }
}
.p-contact-thanks__button-area {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__button-area {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}

.p-fv {
  height: 120px;
  position: relative;
  width: 100%;
  background-image: url("../../img/fv/fv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
}
@media screen and (min-width: 768px) {
  .p-fv {
    margin-top: 74px;
    height: 320px;
    background-image: url("../../img/fv/fv.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
  }
}
.p-fv {
  padding: 11px;
}
@media screen and (min-width: 768px) {
  .p-fv {
    padding: 16px;
  }
}
.p-fv::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid #705F52;
}
@media screen and (min-width: 768px) {
  .p-fv::before {
    inset: 10px;
  }
}
.p-fv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #705F52;
}
.p-fv .c-section-title--center {
  position: absolute;
  left: 12%;
  top: 25%;
}
@media screen and (min-width: 768px) {
  .p-fv .c-section-title--center {
    left: 22%;
    top: 29%;
  }
}
.p-fv .c-section-title--center__title {
  color: #33271E;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 9.3vw, 45px);
  line-height: 1.1;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-fv .c-section-title--center__title {
    font-size: 82px;
  }
}
.p-fv .c-section-title--center__subtitle {
  color: #33271E;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-fv .c-section-title--center__subtitle {
    font-size: 26px;
  }
}

.p-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  overflow: auto;
  margin-top: 3px;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    margin-top: 13px;
    margin-bottom: 13px;
    gap: 15px;
  }
}
.p-breadcrumb__sep {
  font-size: 20px;
}
.p-breadcrumb span[typeof=ListItem] {
  color: #705F52;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb span[typeof=ListItem] {
    font-size: 14px;
  }
}
.p-breadcrumb span[typeof=ListItem] .current-item {
  color: #705F52;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.41;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb span[typeof=ListItem] .current-item {
    font-size: 14px;
  }
}

.p-breadcrumb__item {
  color: #705F52;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__item {
    font-size: 14px;
  }
}
.p-breadcrumb__item:not(:last-child)::after {
  content: "＞";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-left: 1px;
  margin-right: 1px;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__item:not(:last-child)::after {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.p-breadcrumb__link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.p-breadcrumb__link:hover {
  opacity: 0.6;
}

.p-breadcrumb__text {
  color: #705F52;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.41;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__text {
    font-size: 14px;
  }
}

.p-news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 158px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news-card {
    width: 340px;
  }
}
.p-news-card .c-news-title__banner {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  border-radius: 9px;
  background: white;
  padding: 0px 8px;
}
.p-news-card .c-news-title__text {
  color: #C9561D;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}
.p-news-card__img {
  width: 100%;
}
.p-news-card__textarea {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-news-card__textarea {
    margin-top: 12px;
  }
}
.p-news-card__title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* ← 3行まで */
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-news-card__title {
    font-size: 16px;
  }
}
.p-news-card__date {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .p-news-card__date {
    font-size: 14px;
  }
}

.p-news-card--pickup {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news-card--pickup .c-news-title__banner::before {
    height: 22px;
  }
}
@media screen and (min-width: 768px) {
  .p-news-card--pickup .c-news-title__text {
    font-size: 12px;
  }
}
.p-news-card--pickup__img {
  width: 100%;
  aspect-ratio: 158/99;
}
@media screen and (min-width: 768px) {
  .p-news-card--pickup__img {
    aspect-ratio: 83/52;
  }
}
.p-news-card--pickup__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-404 {
  padding: 70px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding: 180px 0;
  }
}
.p-404 .p-404__title {
  font-size: 25px;
  color: #705F52;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-404 .p-404__title {
    font-size: 38px;
  }
}
.p-404 .p-404__text {
  font-size: 14px;
  color: #705F52;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .p-404 .p-404__text {
    font-size: 16px;
  }
}
.p-404 .p-404__link {
  font-size: 14px;
  display: inline-block;
  background-color: #705F52;
  color: white;
  padding: 7px 25px;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .p-404 .p-404__link {
    font-size: 16px;
    padding: 10px 40px;
    border-radius: 8px;
  }
}

.u-separate {
  margin-top: 24px;
  margin-bottom: 24px;
}

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

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}