@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "'Noto Sans JP', sans-serif";
}

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

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

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

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

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

body {
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  /* ページ遷移時のフェードイン/フェードアウト */
}
body body.fade-out {
  opacity: 0;
}

.content {
  opacity: 0;
  pointer-events: none;
}

body.appear .content {
  -webkit-animation-name: PageAnime-content;
          animation-name: PageAnime-content;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}

.animation .content {
  opacity: 1;
  pointer-events: auto;
}

@-webkit-keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

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

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

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

textarea {
  resize: vertical;
}

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

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

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

#p-breadCrumb {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #111;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  #p-breadCrumb {
    font-size: 0.875rem;
    margin-top: 3.125rem;
    padding: 0 1.5625rem;
  }
}

#p-breadCrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#p-breadCrumb ol li a {
  padding: 0 10px;
  padding: 0 0.625rem;
}

#p-header, #p-header-bottom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  #p-header, #p-header-bottom {
    height: 100px;
  }
}

#p-header-bottom {
  background-color: #fff;
}

.p-header__inner {
  max-width: 1440px;
  width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 1.5625rem 1.875rem 1.5625rem 1.5625rem;
  }
}

.p-header__logo {
  display: block;
  max-width: 80px;
  max-width: 5rem;
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 96px;
  }
}

#p-header__content {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  #p-header__content {
    height: unset;
  }
}

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

#p-footer {
  background-image: url(../../images/common/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "'Noto Sans JP', sans-serif";
  font-weight: 400;
  line-height: 150%;
  color: #fff;
  margin-top: 120px;
  margin-top: 7.5rem;
}

#p-footer.p-footer-contact {
  margin-top: unset;
}

.p-footer__inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px 15px 20px;
  padding: 3.75rem 1.25rem 0.9375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 5rem 1.5625rem 1.25rem 1.5625rem;
  }
}

.p-footer__logo {
  max-width: 160px;
  max-width: 10rem;
  width: 100%;
  min-height: 60px;
  min-height: 3.75rem;
  margin-left: auto;
  margin-right: auto;
}

#p-footer__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
  place-items: center;
  gap: 30px 45px;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  #p-footer__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-footer__small {
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__small {
    margin-top: 5rem;
  }
}

#p-pc-nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  #p-pc-nav {
    display: block;
  }
}

#p-pc-nav__items {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#p-pc-nav__items li {
  height: inherit;
}

#p-pc-nav__items li a {
  height: inherit;
  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;
  font-family: "'Noto Sans JP', sans-serif";
  line-height: 1.4285714286;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  color: #111;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 15px 25px;
  padding: 0.9375rem 1.5625rem;
}

#p-pc-nav__items li a:hover {
  color: #2C5B07;
}

#p-pc-nav__items .p-pc-nav--contact a {
  background-color: #69543B;
  border: 1px solid #69543B;
  border-radius: 30px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  color: #fff;
  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;
  position: relative;
  padding: 15px 18px;
  padding: 0.9375rem 1.125rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#p-pc-nav__items .p-pc-nav--contact a:hover {
  background-color: #fff;
  border: 1px solid #69543B;
  color: #69543B;
}

.p-pc-nav--contact a:hover::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-pc-nav--contact a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* サービス内容横の矢印 */
.p-pc-nav__arrow {
  margin-right: 25px;
  margin-right: 1.5625rem;
}

.p-pc-nav__arrow {
  position: relative;
}

.p-pc-nav__arrow::before {
  content: "";
  position: absolute;
  top: 45%;
  right: 3px;
  border: 7px solid transparent;
  border-top: 9px solid #333;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-pc-nav__arrow a:hover::before {
  border-top: 9px solid #69543B;
}

.p-pc-nav__item:nth-child(4n) a {
  padding-right: 50px;
  padding-right: 3.125rem;
}

.p-pc-nav__item:nth-child(5n) {
  height: unset;
  position: relative;
}

.p-pc-nav__item {
  position: relative;
}

.p-pc-nav__fb a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-right: unset;
}

.p-pc-nav__fb a img {
  width: 25px;
  width: 1.5625rem;
}

.p-pc-nav__fb a:hover {
  opacity: 0.8;
}

/* purgecss start ignore */
@media screen and (min-width: 768px) {
  #sp-nav {
    display: none;
  }
}

/*スマホ用のメニュー*/
.p-sp-nav {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  color: #111;
  background-color: #2C5B07;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media screen and (min-width: 768px) {
  .p-sp-nav {
    display: none;
  }
}

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

.p-sp-nav__items {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  padding: 32px 0 100px;
  padding: 2rem 0 6.25rem;
  overflow-y: scroll !important;
}

.p-sp-nav__items li {
  padding: 24px 0;
  padding: 1.5rem 0;
}

.p-sp-nav__items li {
  list-style-type: none;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  position: relative;
  z-index: 100;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  font-weight: 700;
}

.p-sp-nav__items li a {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 700;
  color: #ECE5D7;
}

.p-sp-nav__items li.p-sp-nav--contact a {
  width: 70%;
}

li.p-sp-nav__item--drop {
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.p-sp-nav__item--arrow {
  width: 70%;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

li.p-sp-nav__item--drop span.p-sp-nav__item--arrow::after {
  width: 12px;
  height: 12px;
  margin-top: -12.8px;
  margin-top: -0.8rem;
  content: "";
  position: absolute;
  top: 1em;
  right: 20%;
  border-top: solid 2px #111;
  border-right: solid 2px #111;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-sp-nav__item--arrow {
  display: block;
  text-align: center;
}

.p-sp-nav__item--drop span.p-sp-nav__item--arrow a {
  display: inline !important;
}

li.p-sp-nav__item--drop span.p-sp-nav__item--arrow.is-open::after {
  margin-top: -6.4px;
  margin-top: -0.4rem;
  margin-top: -4px;
  margin-top: -0.25rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

li.p-sp-nav__item--drop ul.sub-menu {
  display: none;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

li.p-sp-nav__item--drop ul.sub-menu.is-open {
  opacity: 0;
  display: block;
  position: relative;
  padding-top: 16px;
  padding-top: 1rem;
  -webkit-animation-name: dropMenu;
          animation-name: dropMenu;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes dropMenu {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dropMenu {
  0% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
ul.sub-menu a {
  height: inherit;
  display: block;
  padding: 5px 0;
  padding: 0.3125rem 0;
}

.p-sp-nav__link {
  display: block;
  width: 100%;
  max-width: 77px;
  height: inherit;
  padding: 10px 0;
  margin-right: 60.8px;
  margin-right: 3.8rem;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 1.3571428571;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p-sp-nav__link:hover {
  opacity: 0.6;
}

.p-sp-nav__body {
  display: none;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.p-sp-nav__body a {
  height: inherit;
  display: inline-block;
  padding: 5px 0;
}

#sp-nav.noMve {
  -webkit-animation: none;
          animation: none;
}

.p-sp-nav--contact a {
  background-color: #ECE5D7;
  color: #321F0A !important;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
  padding: 10px 10px 10px 20px;
  border-radius: 20px;
}

.p-sp-nav__btn {
  position: relative;
  right: 15%;
}

.p-sp-nav__btn a {
  display: inline-block;
  width: 150px;
  width: 9.375rem;
  background-color: #69543B;
  font-size: 16px;
  font-size: 1rem;
  color: #fff !important;
  text-align: center;
  padding: 3px 3px 3px 10px;
  position: relative;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-sp-nav__btn a {
    display: none;
  }
}

.p-sp-nav__btn a::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 13px;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid transparent;
  border-left: 6px solid #69543B;
  z-index: 2;
}

.p-sp-nav__btn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #69543B;
  border-radius: 20px;
  background: #fff;
  z-index: 1;
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #111;
  color: #fff;
}

#p-company__philosophy {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  #p-company__philosophy {
    margin-top: 5.625rem;
  }
}

.p-company-philosophy__inner {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company-philosophy__inner {
    padding: 0 1.5625rem;
  }
}

.p-company__head {
  font-family: "'Noto Sans JP', sans-serif";
}

.p-company__head h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 140%;
  color: #678426;
  text-align: left;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__head h3 {
    font-size: 2rem;
    text-align: center;
    margin-top: 2.5rem;
  }
}

.p-company__head p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #321F0A;
  line-height: 140%;
  text-align: left;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-company__head p {
    text-align: center;
    margin-top: 1.25rem;
  }
}

#p-message {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  #p-message {
    margin-top: 5.625rem;
  }
}

.p-message__bg {
  max-width: 1440px;
  width: 100%;
  background-color: #f4efe7;
  padding: 40px;
  padding: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-message__content {
  max-width: 970px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-message__content {
    -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-message__text {
  width: 100%;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 16px;
  font-size: 1rem;
  line-height: 140%;
  color: #321F0A;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    max-width: 37.7%;
  }
}

.p-message__text p:nth-child(2) {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-message__text p:nth-child(2) {
    margin-top: 1.25rem;
  }
}

.p-message__img {
  max-width: 510px;
  width: 100%;
}

.p-message__img img {
  aspect-ratio: 510/535;
}

#p-about-company {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  #p-about-company {
    margin-top: 5.625rem;
  }
}

.p-about-company__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-company__inner {
    padding: 0 1.5625rem;
  }
}

.p-about-company__list {
  display: grid;
  grid-template-columns: 1fr; /* 1列レイアウト */
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: "'Noto Sans JP', sans-serif";
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-about-company__list {
    grid-template-columns: 235px auto; /* タイトル幅235pxに調整 */
    margin-top: 3.75rem;
  }
}

.p-about-company__item {
  display: contents; /* 各dl項目を個別にグリッド内に表示 */
}

.p-about-company__title {
  background-color: #BFD3A3;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding: 30px 0 30px 20px;
  padding: 1.875rem 0 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-company__title {
    border-bottom: 1px solid #fff;
    font-size: 1.125rem;
    padding: 1.875rem 0 1.875rem 3.125rem;
  }
}

.border-none.p-about-company__title {
  border-bottom: unset;
}

.p-about-company__description {
  border-right: 1px solid #233509;
  border-left: 1px solid #233509;
  border-bottom: 1px solid #233509;
  padding-left: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 30px 0 30px 20px;
  padding: 1.875rem 0 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-company__description {
    font-size: 1rem;
    padding: 1.875rem 0 1.875rem 3.125rem;
    border-left: unset;
  }
}

.border-top.p-about-company__description {
  border-top: 1px solid #233509;
}

#p-access {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  #p-access {
    margin-top: 5.625rem;
  }
}

.p-access__inner {
  position: relative;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-access__inner {
    margin-top: 3.75rem;
  }
}

#p-access iframe {
  position: relative;
  z-index: 1;
}

.overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(57, 77, 13, .38);
  z-index: 2;
}

#privacy {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#p-mv.p-mv__bottom .p-mv__copy.p-mv-copy__privacy {
  color: #321F0A;
  left: 50%;
  font-size: 36px;
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  #p-mv.p-mv__bottom .p-mv__copy.p-mv-copy__privacy {
    font-size: 3rem;
  }
}

#privacy #p-mv.p-mv__bottom {
  height: 100px;
  height: 6.25rem;
}

.p-privacy__inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__inner {
    padding: 0 1.5625rem;
  }
}

.p-privacy__content h2 {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-privacy__content p {
  margin-top: 20px;
  margin-top: 1.25rem;
}

#p-products__bottom {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  #p-products__bottom {
    margin-top: 5.625rem;
  }
}

.p-products__inner {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-products__inner {
    padding: 0 1.5625rem;
  }
}

.p-products__head p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #321F0A;
  line-height: 140%;
  text-align: left;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-products__head p {
    text-align: center;
    margin-top: 1.25rem;
  }
}

#p-products__selected {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #p-products__selected {
    margin-top: 5.625rem;
  }
}

.p-products-selected__inner {
  max-width: 1440px;
  width: 100%;
  background-image: url(/images/products/products-selected-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px;
  padding: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-products-selected__inner {
    padding: 3.75rem;
  }
}

.p-products-selected__content {
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 50px 0;
  place-content: center;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-products-selected__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 100px;
    margin-top: 3.75rem;
  }
}

.p-products-selected__content img {
  max-width: 335px;
  max-width: 20.9375rem;
  width: 100%;
  height: auto;
  aspect-ratio: 350/350;
}
@media screen and (min-width: 768px) {
  .p-products-selected__content img {
    max-width: 21.875rem;
  }
}

.p-products-selected__content p {
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 140%;
  color: #111;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
}

#p-products__items {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  #p-products__items {
    margin-top: 5.625rem;
  }
}

.p-products-items__inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-products-items__inner {
    padding: 0 1.5625rem;
  }
}

#p-products__items a {
  display: inline-block;
  position: relative;
}

#p-products__items a:nth-child(n+2) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-products-item__img {
  max-width: inherit;
  width: 100%;
  display: block;
}

.p-products-item__img img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 335/350;
}
@media screen and (min-width: 768px) {
  .p-products-item__img img {
    aspect-ratio: 1200/340;
  }
}

.p-products-item__img::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 2%;
  width: 96%;
  height: 93%;
  border-radius: 20px;
  -webkit-transform: translate(0%, -1%);
          transform: translate(0%, -1%);
}
@media screen and (min-width: 768px) {
  .p-products-item__img::before {
    height: 90%;
    -webkit-transform: unset;
            transform: unset;
  }
}

.p-products-banana::before {
  border: 5px solid #FFEA63;
}

.p-products-kiwi::before {
  border: 5px solid #8BB73F;
}

.p-products-avo::before {
  border: 5px solid #882205;
}

.p-products-pine::before {
  border: 5px solid #F1A701;
}

.p-products-lemon::before {
  border: 5px solid #F5D312;
}

.p-products-veg::before {
  border: 5px solid #617D49;
}

.p-products-grape::before {
  border: 5px solid #A486AD;
}

.p-products-item__text {
  position: absolute;
  top: 11.76%;
  left: 3.91%;
  font-weight: 700;
  line-height: 140%;
  color: #fff;
}

.p-products-item__text p:first-of-type {
  font-family: "'Josefin Sans',sans-serif";
  font-size: 28px;
  font-size: 1.75rem;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-products-item__text p:first-of-type {
    font-size: 2.5rem;
  }
}

.p-products-item__text p:nth-of-type(2) {
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 18px;
  font-size: 1.125rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-products-item__text p:nth-of-type(2) {
    font-size: 1.5rem;
  }
}

#p-product {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  #p-product {
    margin-top: 4.375rem;
  }
}

.p-product__inner {
  max-width: 800px;
  max-width: 50rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-product__inner {
    padding: 0 1.5625rem;
  }
}

.p-product__head p {
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 16px;
  font-size: 1rem;
  line-height: 140%;
  color: #321F0A;
  text-align: justify;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-product__head p {
    margin-top: 3.75rem;
  }
}

#p-product__reputation {
  max-width: 1480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  #p-product__reputation {
    padding: 0 1.25rem;
    margin-top: 3.75rem;
  }
}

.p-product__items {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-product__item:nth-child(n+2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-product__item:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}

.p-product__item h3 {
  max-width: 100%;
  width: 100%;
  height: 140px;
  position: relative;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-product__item h3 {
    font-size: 3rem;
    padding-left: 7.5rem;
  }
}

.p-product__item h3::after {
  width: 100vw;
  height: 140px;
  background-color: #BFD3a3;
  margin: 0 calc(50% - 50vw);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-product-item__body {
  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;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 16px;
  font-size: 1rem;
  line-height: 140%;
  color: #321F0A;
}
@media screen and (min-width: 768px) {
  .p-product-item__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 38px;
  }
}

.p-product-item__body img {
  max-width: 85%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-product-item__body img {
    max-width: 39.16%;
    width: 100%;
    margin: unset;
  }
}

.p-product-item__detail {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-product-item__detail {
    margin-top: 1.875rem;
  }
}

.p-product-item__detail p {
  line-height: 180%;
}

/* mv */
#p-mv.p-mv__bottom .p-mv__copy {
  left: 20%;
  text-transform: uppercase;
}

.p-mv__img {
  aspect-ratio: 375/385;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    min-height: 40rem;
    aspect-ratio: 1440/450;
  }
}

#p-mv.p-mv__bottom {
  max-width: 100%;
}
@media screen and (min-width: 1441px) {
  #p-mv.p-mv__bottom {
    max-width: 1440px;
  }
}

/* service */
#p-service__bottom {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../../images/top/service_bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  #p-service__bottom {
    background-image: url(../../images/top/service_bg-pc.png);
  }
}

.p-service__inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px 60px;
  padding: 1.875rem 1.25rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__inner {
    padding: 3.75rem 1.5625rem;
  }
}

.p-service__head p {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service__head p {
    margin-top: 2.5rem;
  }
}

.p-service__content {
  max-width: 1230px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* mv */
#p-mv {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 1441px) {
  #p-mv {
    max-width: 1440px;
  }
}

.p-mv__inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-mv__copy {
  max-width: 80%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  font-family: "'Noto Sans JP', sans-serif";
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.p-mv__copy h2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .p-mv__copy h2 {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 421px) {
  .p-mv__copy h2 {
    font-size: 1.4375rem;
  }
}

.p-mv__copy p {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2142857143;
  letter-spacing: 0.08em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__copy p {
    font-size: 1.75rem;
    margin-top: 1.125rem;
  }
}

.p-mv__copy p span {
  color: #69543B;
}

.p-mv__img {
  aspect-ratio: 375/375;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    min-height: 40rem;
    aspect-ratio: 1440/640;
  }
}

/* our mission */
#p-mission {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #p-mission {
    margin-top: 5.625rem;
  }
}

.p-mission__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mission__inner {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-mission__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .p-mission__body {
    max-width: 45.58%;
    width: 100%;
    margin-top: 1.75rem;
  }
}

.p-mission__title {
  font-weight: 700;
  line-height: 140%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mission__title {
    text-align: left;
  }
}

.p-mission__title span {
  font-family: "'Josefin Sans',sans-serif";
  font-size: 18px;
  font-size: 1.125rem;
  color: #68890A;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-mission__title span {
    font-size: 1.5rem;
  }
}

.p-mission__title h2 {
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 30px;
  font-size: 1.875rem;
  color: #321F0A;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-mission__title h2 {
    font-size: 2.5rem;
  }
}

.p-mission__text {
  background-color: rgba(176, 208, 89, .6);
  border-radius: 20px;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 180%;
  font-weight: 400;
  color: #321F0A;
  padding: 30px 30px 50px 30px;
  padding: 1.875rem 1.875rem 3.125rem 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-mission__text {
    width: 113.3%;
    font-size: 1rem;
    padding: 3.125rem;
  }
}

.p-mission__img {
  max-width: 74.6%;
  width: 100%;
  aspect-ratio: 250/285;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -33px;
  margin-top: -2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-mission__img {
    max-width: 53.58%;
    min-height: 46.5625rem;
    aspect-ratio: 653/745;
    margin-top: unset;
  }
}

/* service */
#p-service {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(236, 229, 215, .6);
  border-radius: 30px;
  background-image: url(../../images/top/service_bg-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  #p-service {
    border-radius: 100px;
    background-image: url(../../images/top/service_bg-pc.png);
    margin-top: 7.5rem;
  }
}

.p-service__inner {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px 60px;
  padding: 1.875rem 1.25rem 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-service__inner {
    padding: 3.75rem 1.5625rem;
  }
}

.p-service__content {
  max-width: 1230px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* case */
.p-case-top__inner {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-case-top__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.p-case-top__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-case-top__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}

.p-case-top__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#p-products-top {
  max-width: 1320px;
  width: 100%;
  margin: 80px auto 0;
  margin: 5rem auto 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  #p-products-top {
    margin: 7.5rem auto 0;
  }
}
@media screen and (min-width: 1441px) {
  #p-products-top {
    overflow: hidden;
  }
}

#p-products-top__body {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-right: auto;
  position: relative;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  #p-products-top__body {
    max-width: 1320px;
    width: 100%;
    margin-right: auto;
    margin-left: -5%;
    padding: 3.75rem;
  }
}

#p-products-top__body::before {
  width: 100%;
  height: 70%;
  border-top-right-radius: 20px;
  content: "";
  background-color: rgba(44, 91, 7, .6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  #p-products-top__body::before {
    height: 60%;
  }
}

#p-products-top__body ul {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  #p-products-top__body ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 3.75rem;
  }
}

#p-products-top__body ul li {
  width: 90%;
}
@media screen and (min-width: 768px) {
  #p-products-top__body ul li {
    width: 30%;
  }
}

#p-products-top__body ul li {
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  #p-products-top__body ul li {
    margin-top: 0;
    margin-right: 1.25rem;
  }
}

#p-products-top__body ul li:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  #p-products-top__body ul li:last-child {
    margin-right: 0;
  }
}

#p-products-top__body ul li a:hover {
  opacity: unset;
}

.p-products-top__img {
  max-width: 480px;
  max-width: 30rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-products-top__img {
    max-width: 36rem;
    width: 100%;
    margin: 0;
  }
}

.p-products-top__img img:nth-of-type(2) {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#p-products-top__body .p-products-top__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 7.8%;
  z-index: 2;
  font-family: "'Noto Sans JP', sans-serif";
  font-weight: 700;
  line-height: 140%;
}

#p-products-top__body .p-products-top__box p {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  #p-products-top__body .p-products-top__box p {
    font-size: 1.75rem;
  }
}

.p-products-top__btn {
  font-size: 14px;
  font-size: 0.875rem;
  color: #321F0A;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-products-top__btn {
    font-size: 1rem;
  }
}

.p-products-top__btn::after {
  width: 16px;
  width: 1rem;
  height: 10px;
  height: 0.625rem;
  background-image: url(/images/top/arrowMore.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -35%;
  z-index: 2;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
}
@media screen and (min-width: 768px) {
  .p-products-top__btn::after {
    width: 1.125rem;
  }
}

#p-products-top__body ul li a:hover {
  opacity: 0.7;
}

#p-works-top {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  #p-works-top {
    margin-top: 7.5rem;
  }
}

.p-works-top_bg {
  max-width: 100%;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-works-top_bg {
    display: block;
    max-width: 1440px;
    min-height: 500px;
  }
}

.p-works-top__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: -50px;
  margin-top: -3.125rem;
}
@media screen and (min-width: 768px) {
  .p-works-top__inner {
    padding: 0 1.5625rem;
    margin-top: unset;
  }
}

#p-works-top .p-works-top__title {
  position: relative;
  z-index: 1;
}

.p-works-top__body {
  max-width: 1300px;
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-works-top__body {
    margin-top: 5.625rem;
  }
}

.p-works-top__body::before {
  max-width: 1180px;
  width: 100%;
  height: 850px;
  height: 53.125rem;
  background-color: #fff;
  border-radius: 30px;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: -1;
  padding-top: 60px;
  padding-top: 3.75rem;
  margin-top: -150px;
  margin-top: -9.375rem;
}
@media screen and (min-width: 768px) {
  .p-works-top__body::before {
    top: 0;
    margin-top: -15.625rem;
  }
}

.p-works-top__media {
  max-width: 1270px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-works-top__media {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 4.375rem;
  }
}

.p-works-top__media:nth-of-type(2) {
  margin: 70px auto 0;
  margin: 4.375rem auto 0;
}

.p-works-top__media:nth-of-type(2) .p-works-top_media-left {
  orphans: unset;
}
@media screen and (min-width: 768px) {
  .p-works-top__media:nth-of-type(2) .p-works-top_media-left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; /* 左のコンテンツを右に配置 */
  }
}

.p-works-top__media:nth-of-type(2) .p-works-top_media-right {
  -webkit-box-ordinal-group: unset;
      -ms-flex-order: unset;
          order: unset;
}
@media screen and (min-width: 768px) {
  .p-works-top__media:nth-of-type(2) .p-works-top_media-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; /* 右のコンテンツを左に配置 */
  }
}

.p-works-top__media:nth-of-type(2) .p-works-top_media-left div {
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-works-top__media:nth-of-type(2) .p-works-top_media-left div {
    max-width: 93% !important;
    margin-right: auto;
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-works-top__media:nth-of-type(2) .p-works-top_media-left {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .p-works-top__media:nth-of-type(2) .p-works-top_media-left img {
    margin-left: auto;
  }
}

.p-works-top_media-left div {
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-works-top_media-left div {
    max-width: 88%;
    margin-left: auto;
    margin-top: 1.25rem;
  }
}

.p-works-top_media-left span {
  font-family: "M PLUS 1", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 2px;
  color: #82BD4B;
  text-transform: capitalize;
}

.p-works-top_media-left h3 {
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0px;
  color: #321F0A;
  text-align: justify;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-works-top_media-left h3 {
    font-size: 2.1875rem;
  }
}

.p-works-top_media-left p {
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0px;
  color: #321F0A;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-works-top_media-left img {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-works-top_media-left img {
    display: block;
    max-width: 37.5rem;
    width: 100%;
    margin-top: 5rem;
  }
}

.p-works-top_media-right {
  width: 100%;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-works-top_media-right {
    max-width: 30rem;
    width: 100%;
    margin-left: auto;
    margin-top: unset;
  }
}

.p-works-top_media-right p {
  font-family: Futura, "Century Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 100%;
  color: rgba(134, 154, 29, .3);
  position: absolute;
  bottom: 60px;
  bottom: 3.75rem;
  left: -87px;
  left: -5.4375rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-works-top_media-right p {
    font-size: 12.5rem;
  }
}

.p-works-top__media:nth-of-type(2) .p-works-top_media-right {
  margin-right: auto;
}

.p-works-top__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-works-top__btn {
    margin-top: 4.6875rem;
  }
}

/* レスポンシブ対応（例: モバイルで縦並びにする場合） */
#p-contact__bottom {
  max-width: 100%;
  width: 100%;
  min-height: 150px;
  min-height: 9.375rem;
  background-image: url(../../images/common/contact-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px;
  padding: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-top: 5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  #p-contact__bottom {
    max-width: 1200px;
    width: 100%;
    background-image: url(../../images/common/contact-pc.png);
    min-height: 28.125rem;
    padding: 6.25rem 1.5625rem;
    margin-top: 7.5rem;
  }
}

#p-contact__bottom::before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #A38E67;
  opacity: 0.5;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  #p-contact__bottom::before {
    max-width: 1200px;
    width: 100%;
    border-radius: 30px;
  }
}

.p-contact__bottom-inner {
  width: 100%;
  height: 100%;
}

.p-contact__bottom-title {
  position: relative;
  z-index: 1;
}

.p-contact__bottom-btn {
  width: 240px;
  width: 15rem;
  background-color: #69543B;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 12px;
  padding: 0.75rem;
  text-align: center;
  margin-top: 20px;
  margin-top: 1.25rem;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}
@media screen and (min-width: 768px) {
  .p-contact__bottom-btn {
    width: 30rem;
    padding: 1.25rem;
    margin-top: 4.375rem;
  }
}

.p-contact__bottom-btn::before {
  width: 100%;
  height: 25.7%;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
  content: "";
  position: absolute;
  top: 0.5%;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(transparent));
  background: linear-gradient(180deg, white, transparent);
  opacity: 0.37;
}

.p-contact__bottom-btn::after {
  width: 20px;
  width: 1.25rem;
  height: 27px;
  height: 1.6875rem;
  background-image: url(/images/common/arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translate(5%, -50%);
          transform: translate(5%, -50%);
}
@media screen and (min-width: 768px) {
  .p-contact__bottom-btn::after {
    width: 2.5rem;
    height: 2.9375rem;
  }
}

.p-contact__bottom-btn:hover {
  opacity: 0.7;
}

#p-about-top {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  #p-about-top {
    margin-top: 7.5rem;
  }
}

#p-about-top a {
  display: inline-block;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

#p-about-top a:hover {
  opacity: 0.7;
}

.p-about-top__inner {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-top__inner {
    max-width: 1200px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem;
    padding: 0 1.5625rem;
  }
}

#p-company-top,
#p-philosophy-top {
  position: relative;
}

#p-philosophy-top {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #p-philosophy-top {
    margin-top: unset;
  }
}

#p-company-top img,
#p-philosophy-top img {
  max-width: 560px;
  max-width: 35rem;
  width: 100%;
  height: auto;
  aspect-ratio: 560/300;
}

.p-company__title,
.p-philosophy__title {
  background-color: rgba(134, 154, 29, .6);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.p-company__title {
  padding: 40px 70px;
  padding: 2.5rem 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-company__title {
    padding: 3.4375rem 3.75rem;
  }
}

.p-philosophy__title {
  padding: 40px 47px;
  padding: 2.5rem 2.9375rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy__title {
    padding: 3.4375rem 1.6875rem;
  }
}

#p-works {
  width: 100%;
  height: 100%;
  background-image: url(../images/works/works-bg-sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  #p-works {
    background-image: url(../images/works/works-bg.png);
  }
}

#p-works__bottom {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  #p-works__bottom {
    margin-top: 5.625rem;
  }
}

.p-works__inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-works__inner {
    padding: 0 1.5625rem;
  }
}

.p-works__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-works__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 3.75rem;
  }
}

#p-work__content {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-family: "'Noto Sans JP', sans-serif";
  color: #321F0A;
}
@media screen and (min-width: 768px) {
  #p-work__content {
    margin-top: 5.625rem;
  }
}

.p-work-content__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-work-content__inner {
    padding: 0 1.5625rem;
  }
}

.p-work-content__head {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.p-work-content__head #c-title span {
  font-family: "'Josefin Sans',sans-serif";
  font-size: 18px;
  font-size: 1.125rem;
  color: #68890A;
}

.p-work-content__head #c-title span.c-title-digit {
  font-size: 30px;
  font-size: 1.875rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-work-content__head #c-title span.c-title-digit {
    font-size: 3.75rem;
  }
}

.p-work-content__head #c-title h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #2e6818;
}
@media screen and (min-width: 768px) {
  .p-work-content__head #c-title h2 {
    font-size: 1.875rem;
  }
}

.p-work-content__head p {
  text-align: center;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-work-content__head p {
    font-size: 1rem;
  }
}

.p-work-middle__img {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-work-middle__img {
    margin-top: 3.75rem;
  }
}

#p-work__content .p-work-content__inner h3 {
  max-width: 350px;
  max-width: 21.875rem;
  width: 100%;
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 600px) {
  #p-work__content .p-work-content__inner h3 {
    max-width: 46.25rem;
    margin-top: 3.75rem;
    font-size: 2.25rem;
  }
}

#p-work__content .p-work-content__inner h3::before {
  max-width: 100px;
  max-width: 6.25rem;
  width: 100%;
  height: 15px;
  height: 0.9375rem;
  background-image: url(../../images/work/title-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  #p-work__content .p-work-content__inner h3::before {
    max-width: 16.25rem;
    height: 1.25rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  #p-work__content .p-work-content__inner h3::before {
    max-width: 12.5rem;
    height: 0.9375rem;
  }
}

#p-work__content .p-work-content__inner h3::after {
  max-width: 100px;
  max-width: 6.25rem;
  width: 100%;
  height: 15px;
  height: 0.9375rem;
  background-image: url(../../images/work/title-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width: 768px) {
  #p-work__content .p-work-content__inner h3::after {
    max-width: 16.25rem;
    height: 1.25rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  #p-work__content .p-work-content__inner h3::after {
    max-width: 12.5rem;
    height: 0.9375rem;
  }
}

.p-work__items {
  max-width: 1140px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-work__items {
    margin-top: 10rem;
  }
}

.p-work__item {
  min-height: 795px;
  min-height: 49.6875rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-work__item {
    min-height: 29.5rem;
  }
}

.p-work__item:nth-of-type(2) {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-work__item:nth-of-type(2) {
    margin-top: unset;
  }
}

.p-work-item__bg1 {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(30%, #F5EFE4), to(#F5EFE4));
  background: linear-gradient(180deg, transparent 0%, transparent 20%, #F5EFE4 30%, #F5EFE4 100%);
  border-radius: 20px;
  padding: 15px 15px 50px 15px;
  padding: 0.9375rem 0.9375rem 3.125rem 0.9375rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-work-item__bg1 {
    height: 21.25rem;
    padding: 3.75rem;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, transparent), color-stop(20%, #F5EFE4), to(#F5EFE4));
    background: linear-gradient(90deg, transparent 0%, transparent 20%, #F5EFE4 20%, #F5EFE4 100%);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-work__item:nth-of-type(2) .p-work-item__bg2 {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(30%, #F5EFE4), to(#F5EFE4));
  background: linear-gradient(180deg, transparent 0%, transparent 20%, #F5EFE4 30%, #F5EFE4 100%);
  border-radius: 20px;
  padding: 15px 15px 50px 15px;
  padding: 0.9375rem 0.9375rem 3.125rem 0.9375rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-work__item:nth-of-type(2) .p-work-item__bg2 {
    height: 21.25rem;
    background: -webkit-gradient(linear, left top, right top, from(#F5EFE4), color-stop(80%, #F5EFE4), color-stop(80%, transparent), to(transparent));
    background: linear-gradient(90deg, #F5EFE4 0%, #F5EFE4 80%, transparent 80%, transparent 100%);
    padding: 3.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    flex-direction: row-reverse;
  }
}

.p-work-item__body img {
  max-width: 451px;
  max-width: 28.1875rem;
  width: 100%;
  height: auto;
  aspect-ratio: 451/472;
}

.p-work-item__text {
  max-width: 560px;
  width: 100%;
}

.p-work-item__bg1 .p-work-item__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-work-item__bg1 .p-work-item__text {
    margin-left: 4.375rem;
  }
}

.p-work-item__bg2 .p-work-item__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-work-item__bg2 .p-work-item__text {
    margin-right: 4.375rem;
  }
}

#p-work__slider {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #p-work__slider {
    margin-top: 5.625rem;
  }
}

.c-btn {
  background-color: #fff;
  text-align: center;
  border: 3px solid #7D6951;
  border-radius: 10px;
  padding: 13px 55px;
  padding: 0.8125rem 3.4375rem;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #321F0A;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 1.25rem;
    padding: 1.0625rem 4.375rem;
  }
}

.c-btn:hover {
  background-color: #69543B;
  color: #fff;
}

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

.c-btn__contact {
  height: inherit;
  display: inline-block;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn__contact {
    font-size: 1.75rem;
  }
}

.c-btn.c-btn-works {
  background-color: #7b5424;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  padding: 3px 47px;
  padding: 0.1875rem 2.9375rem;
  border: unset;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

.c-btn.c-btn-works:hover {
  background-color: #fff;
  color: #69543B;
}

.c-btn.c-btn-works::after {
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 3px solid #7D6951;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: border 0.5s ease;
  transition: border 0.5s ease;
}

.c-btn.c-btn-works:hover::after {
  display: block;
}

/*メニューボタン 展開前*/
.c-hamburger {
  width: 38px;
  width: 2.375rem;
  height: 38px;
  height: 2.375rem;
  display: block;
  position: absolute;
  top: 35%;
  right: 5%;
  cursor: pointer;
  text-align: center;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger span {
  width: 38px;
  width: 2.375rem;
  height: 3.22px;
  background-color: #111;
  display: block;
  position: absolute;
  border-radius: 20px;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-hamburger span:nth-of-type(1) {
  top: 0;
}

.c-hamburger span:nth-of-type(2) {
  top: 10px;
  top: 0.625rem;
}

.c-hamburger span:nth-of-type(3) {
  top: 20px;
  top: 1.25rem;
}

/*メニューボタン 展開後*/
.c-hamburger.active span:nth-child(1) {
  background-color: #fff;
  top: 19.2px;
  top: 1.2rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-hamburger.active span:nth-child(2),
.c-hamburger.active span:nth-child(3) {
  background-color: #fff;
  top: 19.2px;
  top: 1.2rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-links {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .nav-links {
    margin-top: 5rem;
  }
}

.page-numbers {
  width: 30px;
  width: 1.875rem;
  /* height: 30px; */
  /* height: 1.875rem; */
  margin-right: 10px;
  margin-right: 0.625rem;
  padding: 10px;
  padding: 0.625rem;
  border: 1px solid #321F0A;
  font-family: "'Josefin Sans',sans-serif";
  font-size: 16px 18;
  font-size: 1rem 18;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  color: #321F0A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
}
.page-numbers.list {
  border: none;
  text-decoration: underline;
}

.page-numbers:hover {
  background-color: #321F0A;
  border: 1px solid #fff;
  color: #fff;
}

.page-numbers.prev:hover,
.page-numbers.next:hover {
  background-color: unset;
  border: unset;
  color: #d9d9d9;
}

.dots {
  border: none;
  text-align: center;
}

.prev,
.next {
  border: none;
}

#c-single__pagenation {
  text-align: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  #c-single__pagenation {
    margin-top: 5.625rem;
  }
}

#c-single__pagenation .page-numbers {
  width: auto;
}

.c-single_nav-links {
  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;
}

@media screen and (min-width: 768px) {
  .c-service__media {
    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;
  }
}

div.c-service__media:nth-of-type(1) {
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  div.c-service__media:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  div.c-service__media:nth-of-type(n +2) {
    margin-top: -12.5rem;
  }
}

#p-service__bottom div.c-service__media:nth-of-type(n +2) {
  margin-top: unset;
}

.c-service__media-body {
  font-family: "'Noto Sans JP', sans-serif";
}
@media screen and (min-width: 768px) {
  .c-service__media-body {
    max-width: 36.74%;
    width: 100%;
  }
}

.c-service__media-title {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 140%;
  font-weight: 700;
  color: #321F0A;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-service__media-title {
    margin-top: 0.625rem;
    font-size: 1.5rem;
  }
}

.c-service__media-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 160%;
  color: #321F0A;
  text-align: justify;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-service__media-text {
    margin-top: 0.625rem;
  }
}

.c-service__media-img {
  display: block;
  max-width: 625px;
  max-width: 39.0625rem;
  width: 100%;
  aspect-ratio: 275/275;
}
@media screen and (min-width: 768px) {
  .c-service__media-img {
    min-height: 45.5rem;
    aspect-ratio: 625/621;
  }
}

#c-subTitle {
  font-family: "'Josefin Sans',sans-serif";
}

#c-subTitle span {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 100%;
  color: #321F0A;
}
@media screen and (min-width: 768px) {
  #c-subTitle span {
    font-size: 2.5rem;
  }
}

#c-subTitle p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 200;
  line-height: 100%;
  color: #886845;
  margin-top: -5px;
  margin-top: -0.3125rem;
}
@media screen and (min-width: 768px) {
  #c-subTitle p {
    font-size: 1rem;
  }
}

#c-title,
#c-title2 {
  text-align: center;
  font-weight: 700;
  line-height: 140%;
}

#c-title span {
  font-family: "'Josefin Sans',sans-serif";
  font-size: 18px;
  font-size: 1.125rem;
  color: #68890A;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  #c-title span {
    font-size: 1.5rem;
  }
}

#c-title h2 {
  display: block;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 150%;
  color: #321F0A;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  #c-title h2 {
    font-size: 2.5rem;
  }
}

#c-title2 span {
  font-family: Arial, "Helvetica Neue", "BIZ UDPGothic", Meiryo, "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  #c-title2 span {
    font-size: 4.375rem;
  }
}

#c-title2 h2 {
  display: block;
  font-family: "'Noto Sans JP', sans-serif";
  font-size: 16px;
  font-size: 1rem;
  line-height: 150%;
  color: #fff;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  #c-title2 h2 {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  #c-title2.p-company__title span,
  #c-title2.p-philosophy__title span {
    font-size: 3rem !important;
  }
}

#c-title.c-title-products span {
  text-transform: capitalize;
}

.c-works__card {
  min-height: 600px;
  min-height: 37.5rem;
  height: 100%;
  background-color: #FFF8CD;
  border-radius: 20px;
  padding: 19px 14px;
  padding: 1.1875rem 0.875rem;
  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;
}
@media screen and (min-width: 768px) {
  .c-works__card {
    min-height: 37rem;
    padding: 1.375rem;
  }
}

.c-works__card a {
  height: inherit;
  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;
}

.c-works__img {
  position: relative;
}

.c-works__label {
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 18px;
  border-top-left-radius: 1.125rem;
  font-family: "'Josefin Sans',sans-serif";
  line-height: 140%;
  color: #321F0A;
  padding: 12px 14px;
  padding: 0.75rem 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-works__label {
    padding: 1rem 0.875rem;
  }
}

.c-works-label__en {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .c-works-label__en {
    font-size: 0.875rem;
    margin-top: 0.3125rem;
  }
}

.c-works-label__digit {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-works-label__digit {
    font-size: 2.25rem;
  }
}

.c-works__box {
  font-family: "'Noto Sans JP', sans-serif";
  line-height: 140%;
  color: #321F0A;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.c-works__box h3 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .c-works__box h3 {
    font-size: 1.5rem;
  }
}

.c-works__box p {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.l-mission__text {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-mission__text {
    margin-top: 2.5rem;
  }
}

#p-work__slider {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 128px;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  #p-work__slider {
    margin-top: 12rem;
  }
}

#p-work__slider .swiper-slide {
  width: 350px !important;
  width: 21.875rem !important;
}

#p-work__slider .swiper-slide div img {
  aspect-ratio: 300/215;
}
@media screen and (min-width: 768px) {
  #p-work__slider .swiper-slide div img {
    aspect-ratio: 350/220;
  }
}

#p-work__slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

#p-work__slider.swiper-slide {
  width: 720px;
  width: 45rem;
}

#p-work__slider .swiper-slide div:nth-of-type(2) {
  background-color: #111;
  color: #111;
  text-align: center;
  padding: 48px;
  padding: 3rem;
}

#p-work__slider .swiper2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  #p-work__slider .swiper2 {
    margin-top: 3rem;
  }
}

/*前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
  }
}

.swiper-button-prev {
  left: auto;
  right: 15%;
  top: 16%;
}

.swiper-button-next {
  left: auto;
  right: 10%;
  top: 16%;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 16px;
  margin: auto;
  width: 16px;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../../images/top/swiperArrow1.png);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../../images/top/swiperArrow2.png);
}

.swiper-button-active {
  background-color: #F4EFE7;
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-pagination {
  display: none;
}

/* スマホサイズのスクリーンでのみ表示 */
@media (max-width: 768px) {
  .swiper-pagination {
    display: block;
  }
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 80px !important;
}

.swiper-pagination-bullet-active {
  background: #68890A !important;
}
/*# sourceMappingURL=styles.css.map */
