@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: #203e76;
  font-weight: 500;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  background-color: #FFFAEF;
  position: relative;
  z-index: -1;
}

html {
  height: 100%;
}

body {
  overflow-x: hidden;
}

html {
  font-size: 16px;
}
@media (max-width: 400px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}

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

a[href^="tel:"] {
  pointer-events: none;
}
@media (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

*,
*::before,
*::after {
  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 {
  text-decoration: none;
}

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

/* 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: 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;
}

.l-inner {
  padding-inline: 1.5625rem;
  max-width: 100%;
  width: 70.625rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .l-inner {
    padding-inline: 0.9375rem;
    max-width: 500px;
    width: 100%;
  }
}

.l-inner.--narrow {
  width: 53.125rem;
  padding-inline: 1.5625rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .l-inner.--narrow {
    padding-inline: 0.9375rem;
    max-width: 500px;
    width: 100%;
  }
}

.l-inner.--middle {
  width: 55.625rem;
  padding-inline: 1.5625rem;
  max-width: 100%;
}
@media (max-width: 1170px) {
  .l-inner.--middle {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l-inner.--middle {
    padding-inline: 0.9375rem;
    max-width: 500px;
    width: 100%;
  }
}

.l-layout {
  display: flex;
  align-items: flex-start;
  height: inherit;
}
@media (max-width: 1170px) {
  .l-layout {
    display: block;
    overflow-x: hidden;
  }
}

.l-layout__side {
  width: 17.5rem;
  position: sticky;
  top: 0;
  flex-shrink: 0;
}
@media (max-width: 1170px) {
  .l-layout__side {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
  }
}

.l-layout__main {
  flex: 1;
  height: inherit;
  width: calc(100% - 17.5rem);
}
.l-layout__main.--sd {
  background-color: #FEFCEF;
}
@media (max-width: 1170px) {
  .l-layout__main.--sd {
    margin-block-start: 4.375rem;
  }
}
@media (max-width: 1170px) {
  .l-layout__main {
    width: 100%;
  }
}

.c-button {
  color: #003A17;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.75;
  text-align: right;
  background-color: #F3EBD2;
  padding: 0.625rem 1.0625rem;
  width: 15rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: background-color 0.3s ease;
}
.c-button::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.125rem;
  width: 2.5rem;
  height: 0.0625rem;
  background-color: #003A17;
}
.c-button.--top-about {
  opacity: 0.8;
}

.c-button:hover {
  background-color: #EED384;
}

.c-button.--orange {
  background-color: #D2691E;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.75;
  padding: 0.625rem 1rem;
  width: 15rem;
  display: flex;
  border-radius: 1.25rem;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease, text-color 0.3s ease;
}
.c-button.--orange::before {
  display: none;
}
.c-button.--orange::after {
  content: "";
  width: 1.0625rem;
  height: 0.625rem;
  display: inline-block;
  background-color: #fff;
  mask-image: url(../image/arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../image/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  margin-inline-start: 1rem;
  transition: background-color 0.3s ease;
}
.c-button.--orange:hover {
  background-color: #FEFCEF;
  color: #D2691E;
}
.c-button.--orange:hover::after {
  background-color: #D2691E;
}

.c-button.--green {
  background-color: #003A17;
  color: #fff;
}
.c-button.--green::before {
  background-color: #fff;
}
.c-button.--green:hover {
  background-color: #EED384;
  color: #003A17;
}
.c-button.--green:hover::before {
  background-color: #003A17;
}

.c-button.--mail {
  font-size: 1rem;
  padding-inline: 0.5rem;
}
.c-button.--mail::before {
  background-color: #C9A023;
  mask-image: url(../image/mail-gold.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../image/mail-gold.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  width: 1.5625rem;
  height: 1.125rem;
  transition: background-color 0.3s ease;
}
.c-button.--mail:hover {
  background-color: #C9A023;
  color: #fff;
}
.c-button.--mail:hover::before {
  background-color: #fff;
}

.c-button.--instagram {
  background-color: #00230E;
  color: #fff;
  text-align: left;
  justify-content: space-between;
  font-weight: 500;
}
.c-button.--instagram::before {
  display: none;
}
.c-button.--instagram::after {
  content: "";
  width: 2.125rem;
  height: 2.125rem;
  display: inline-block;
  background-color: #fff;
  mask-image: url(../image/instagram.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../image/instagram.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  margin-inline-start: 1rem;
  transition: background-color 0.3s ease;
}
.c-button.--instagram:hover {
  background-color: #005522;
}

.c-button.--instagram.--orange {
  font-size: 0.9375rem;
  background-color: #E95513;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.3333333333;
  padding: 0.625rem 1rem;
  width: 15rem;
  border-radius: 0.625rem;
}
.c-button.--instagram.--orange:hover {
  background-color: #F6986F;
}
.c-button.--instagram.--orange:hover::after {
  background-color: #fff;
}

.c-button.--mail.--sd {
  background-color: #fff;
  border: 0.125rem solid #E95513;
  border-radius: 9999px;
  color: #E95513;
}
.c-button.--mail.--sd::before {
  background-color: #E95513;
}

.c-pageTop {
  height: 31.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .c-pageTop {
    height: 18.75rem;
  }
}
.c-pageTop::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
}
.c-pageTop::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25.375rem;
  height: 14.8125rem;
  background-image: url(../image/fv-deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .c-pageTop::after {
    width: 15rem;
    height: 8.75rem;
  }
}
.c-pageTop.--about:before {
  background-position: left center;
  background-image: url(../image/about-page-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .c-pageTop.--about:before {
    background-image: url(../image/about-page-top-sp.png);
    background-position: center top;
  }
}
.c-pageTop.--recruit:before {
  background-position: left center;
  background-image: url(../image/recruit-page-top.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .c-pageTop.--recruit:before {
    background-position: left center;
    background-image: url(../image/page-recruit-top-sp.png);
    background-size: cover;
    background-position: right 20% top;
  }
}
.c-pageTop .c-pageTop__inner {
  padding-block-start: 9.5625rem;
  height: inherit;
}
@media (max-width: 768px) {
  .c-pageTop .c-pageTop__inner {
    padding-block-start: 6.875rem;
  }
}
.c-pageTop .c-pageTop__title {
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 768px) {
  .c-pageTop .c-pageTop__title {
    font-size: 1.5rem;
  }
}

.c-csrButtons {
  display: flex;
  justify-content: center;
  margin-block-start: 6.625rem;
  column-gap: 1rem;
  row-gap: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-csrButtons {
    margin-block-start: 3.3125rem;
  }
}

.c-csrButtons__button {
  max-width: 17.5rem;
  flex: 1;
  border: solid #203e76 0.0625rem;
  height: auto;
  min-height: 4.375rem;
  display: flex;
  align-items: center;
  padding-block: 0.5rem;
  text-align: center;
}
@media (max-width: 1170px) {
  .c-csrButtons__button {
    max-width: 20rem;
  }
}
@media (max-width: 768px) {
  .c-csrButtons__button {
    flex: none;
    max-width: 15rem;
    width: 20.25rem;
    height: 5rem;
  }
}

.c-csrButtons__buttonLink {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #203e76;
  font-size: clamp(14px, 1.125rem, 100px);
  letter-spacing: 0.05em;
  font-weight: 500;
  height: inherit;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 0.5rem;
}
.c-csrButtons__buttonLink::after {
  content: "";
  width: 0.9375rem;
  height: 0.5rem;
  display: inline-block;
  background: url(../image/arrow-right-down.svg) no-repeat center;
  background-size: contain;
  margin-block-start: 0.75rem;
}

.c-csrHeaderBlock {
  display: flex;
  align-items: center;
}

.c-csrHeaderBlock__image {
  margin-inline-end: 3.75rem;
  width: 16.25rem;
}
@media (max-width: 768px) {
  .c-csrHeaderBlock__image {
    width: 8.75rem;
    margin-inline-end: 1rem;
  }
}

.c-csrHeaderBlock__header {
  font-weight: 400;
}
.c-csrHeaderBlock__header span {
  font-size: clamp(12px, 1.625rem, 100px);
}
@media (max-width: 768px) {
  .c-csrHeaderBlock__header span {
    font-size: 0.75rem;
  }
}

.c-csrHeaderBlock__english {
  font-size: 1.3125rem;
  margin-block-start: 0.75rem;
}

.c-csrDefinition {
  background-color: rgba(236, 234, 208, 0.35);
  display: flex;
  padding-block: 3.75rem;
  padding-inline: 3.625rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .c-csrDefinition {
    flex-direction: column;
    padding-block: 1.5rem;
    padding-inline: 1rem;
    gap: 1rem;
  }
}

.c-csrDefinition + .c-csrDefinition {
  margin-block-start: 1.875rem;
}

.c-csrDefinition__header {
  font-weight: 700;
  width: 8.75rem;
}
@media (max-width: 768px) {
  .c-csrDefinition__header {
    width: 100%;
  }
}

.c-csrDefinition__text {
  flex: 1;
}

.c-newsParts__inner {
  display: flex;
  justify-content: space-between;
}

.c-newsParts__left {
  display: flex;
  align-items: center;
  row-gap: 0.875rem;
}
@media (max-width: 768px) {
  .c-newsParts__left {
    flex-wrap: wrap;
    flex: 1;
  }
}

.c-newsParts__date {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(16.5px, 1.03125rem, 100px);
  font-weight: 700;
  color: #2A2A2A;
  margin-inline-end: 1rem;
}
@media (max-width: 768px) {
  .c-newsParts__date {
    font-size: 0.9375rem;
  }
}

.c-newsParts__category {
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #203e76;
  font-size: clamp(14px, 0.875rem, 100px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.3125rem;
  padding-inline: 1.375rem;
  margin-inline-end: 1.78125rem;
}
@media (max-width: 768px) {
  .c-newsParts__category {
    padding-inline: 0.8125rem;
    padding-block: 0.125rem;
    font-size: 0.875rem;
    min-width: 5rem;
    margin-inline-end: 1rem;
  }
}

.c-newsParts__title {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(16.5px, 1.03125rem, 100px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
  width: 25rem;
  color: #2A2A2A;
  font-weight: 500;
}
@media (max-width: 1100px) {
  .c-newsParts__title {
    width: 28.75rem;
  }
}
@media (max-width: 768px) {
  .c-newsParts__title {
    width: 15rem;
  }
}

.c-newsParts__link {
  color: #2A2A2A;
  letter-spacing: 0.05em;
  font-size: clamp(16.5px, 1.03125rem, 100px);
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
}
.c-newsParts__link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  display: inline-block;
  background-color: #2A2A2A;
  bottom: -0.25rem;
}
@media (max-width: 768px) {
  .c-newsParts__link {
    width: 4rem;
  }
}

.c-newsParts__right {
  width: 9.25rem;
  text-align: right;
}
@media (max-width: 768px) {
  .c-newsParts__right {
    width: 10rem;
  }
}

.c-topBlock {
  padding-block-start: 9.6875rem;
  padding-block-end: 11.0625rem;
  width: 50%;
}
@media (max-width: 768px) {
  .c-topBlock {
    width: 100%;
  }
}

.c-topBlock__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 768px) {
  .c-topBlock__inner {
    max-width: 500px;
    margin-inline: auto;
  }
}

.c-topBlock__header {
  font-size: 2.5rem;
  color: #203e76;
  font-weight: 400;
}
@media (max-width: 768px) {
  .c-topBlock__header {
    font-size: 1.875rem;
  }
}

.c-topBlock__headerEn {
  color: #000;
  font-size: clamp(16px, 1.3125rem, 100px);
}
@media (max-width: 768px) {
  .c-topBlock__headerEn {
    font-size: 1.125rem;
  }
}

.c-topBlock__lead {
  font-size: clamp(18px, 1.875rem, 100px);
  line-height: 1.6;
  margin-block-start: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-topBlock__lead {
    font-size: 1.4375rem;
    letter-spacing: -0.05em;
    margin-block-start: 2.125rem;
  }
}

.c-topBlock__texts {
  margin-block-start: 2.4375rem;
}
@media (max-width: 768px) {
  .c-topBlock__texts {
    margin-block-start: 2.125rem;
  }
}

.c-topBlock__text {
  font-size: clamp(16px, 1rem, 100px);
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.88;
}
@media (max-width: 768px) {
  .c-topBlock__text {
    font-size: 0.9375rem;
  }
}

.c-topBlock__buttonArea {
  margin-block-start: 3rem;
}
@media (max-width: 768px) {
  .c-topBlock__buttonArea {
    width: fit-content;
    margin-inline: auto;
  }
}

.c-column {
  padding-block-start: 6.8125rem;
  padding-block-end: 8rem;
  background-color: #203e76;
  min-height: 53.75rem;
}
@media (max-width: 1279px) {
  .c-column {
    padding-block-end: 12.5rem;
  }
}
@media (max-width: 768px) {
  .c-column {
    padding-block-start: 4.6875rem;
    min-height: auto;
    padding-block-end: 8rem;
  }
}
.c-column::after {
  content: "";
  position: absolute;
  top: -5rem;
  right: 0;
  width: 43.375rem;
  height: 57.5rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .c-column::after {
    width: 16.625rem;
    height: 26.1875rem;
    top: -5.3125rem;
  }
}

.c-column.--reverse .c-column__wrapper {
  margin-inline-start: auto;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .c-column.--reverse .c-column__wrapper {
    flex-direction: column;
    align-items: flex-end;
  }
}
.c-column.--reverse::after {
  content: "";
  position: absolute;
  top: -10.75rem;
  left: 0;
  width: 43.75rem;
  height: 56rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .c-column.--reverse::after {
    width: 16.625rem;
    height: 26.1875rem;
    top: -5.3125rem;
  }
}

.c-column.--white {
  background-color: #fff;
}
.c-column.--white .c-column__english,
.c-column.--white .c-column__header,
.c-column.--white .c-column__lead,
.c-column.--white .c-column__text {
  color: #2A2A2A;
}

.c-column__wrapper {
  display: flex;
  width: 51.25rem;
  justify-content: space-between;
  gap: 5rem;
  max-width: 100%;
  gap: 4.375rem;
}
@media (max-width: 768px) {
  .c-column__wrapper {
    gap: 3.0625rem;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
  }
}

.c-column__header {
  font-weight: 400;
  color: #fff;
}
@media (max-width: 768px) {
  .c-column__header {
    min-height: 15.625rem;
    margin-inline-start: auto;
  }
}

.c-column__english {
  margin-block-end: 2.75rem;
  letter-spacing: 0.01em;
  color: #fff;
}
@media (max-width: 768px) {
  .c-column__english {
    margin-block-end: 1.5rem;
  }
}

.c-column__lead {
  margin-block-end: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 768px) {
  .c-column__lead {
    margin-block-end: 2.25rem;
  }
}

.c-column__text {
  color: #fff;
  display: block;
}

.c-column__text + .c-column__text {
  margin-block-start: 1.5rem;
}

.c-column__buttonArea {
  width: fit-content;
  margin-inline-end: auto;
  margin-block-start: 4.5rem;
}
@media (max-width: 768px) {
  .c-column__buttonArea {
    margin-block-start: 2.5rem;
    margin-inline: auto;
  }
}

.p-strength.c-column {
  margin-block-start: 16.6875rem;
  background: url(../image/top-strength-bg.webp) no-repeat center;
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  .p-strength.c-column {
    margin-block-start: 9.375rem;
  }
}
.p-strength.c-column::after {
  background: url(../image/top-strength.webp) no-repeat center;
  background-size: cover;
}

.p-bfp.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.5rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-bfp.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-bfp.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-bfp.c-column::after {
  background: url(../image/printing-service1.webp) no-repeat center;
  background-size: cover;
}

.p-onDemand.c-column {
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  .p-onDemand.c-column {
    margin-block-start: 2rem;
  }
}
.p-onDemand.c-column::after {
  background: url(../image/printing-service2.webp) no-repeat center;
  background-size: cover;
}

.p-securityPrinting.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-securityPrinting.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-securityPrinting.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-securityPrinting.c-column::after {
  background: url(../image/printing-service3.webp) no-repeat center;
  background-size: cover;
}

.p-sealPrinting.c-column {
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  .p-sealPrinting.c-column {
    margin-block-start: 2rem;
  }
}
.p-sealPrinting.c-column::after {
  background: url(../image/printing-service4.webp) no-repeat center;
  background-size: cover;
}

.p-securityPrinting.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-securityPrinting.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-securityPrinting.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-securityPrinting.c-column::after {
  background: url(../image/printing-service3.webp) no-repeat center;
  background-size: cover;
}

.p-odm-advantage.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-odm-advantage.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-odm-advantage.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-odm-advantage.c-column::after {
  background: url(../image/printing-service2.webp) no-repeat center;
  background-size: cover;
}

.p-security.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-security.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-security.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-security.c-column::after {
  background: url(../image/printing-service3.webp) no-repeat center;
  background-size: cover;
}

.p-dps-overview.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-dps-overview.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-dps-overview.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-dps-overview.c-column::after {
  background: url(../image/dps-overview.webp) no-repeat center;
  background-size: cover;
}

.p-pressure-seal.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-pressure-seal.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-pressure-seal.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-pressure-seal.c-column::after {
  background: url(../image/printing-service4.webp) no-repeat center;
  background-size: cover;
}

.p-business-form.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-business-form.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-business-form.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-business-form.c-column::after {
  background: url(../image/printing-service1.webp) no-repeat center;
  background-size: cover;
}

.p-quote.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-quote.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-quote.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-quote.c-column::after {
  background: url(../image/quote-bg.webp) no-repeat center;
  background-size: cover;
}

.p-insertion.c-column {
  background-size: cover;
  position: relative;
  margin-block-start: 12.625rem;
  height: 57.8125rem;
}
@media (max-width: 1279px) {
  .p-insertion.c-column {
    height: auto;
  }
}
@media (max-width: 768px) {
  .p-insertion.c-column {
    margin-block-start: 6.25rem;
  }
}
.p-insertion.c-column::after {
  background: url(../image/insertion-bg.webp) no-repeat center;
  background-size: cover;
}

.c-column__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-block-start: 4.6875rem;
}
@media (max-width: 768px) {
  .c-column__bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

.c-column__button.--icon {
  color: #fff;
  font-size: 1.5rem;
  background-color: #000;
  width: 23.125rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .c-column__button.--icon {
    width: 17.5rem;
  }
}
.c-column__button.--icon::before {
  content: "";
  width: 2.5625rem;
  height: 1.6875rem;
  display: inline-block;
  transition: 0.3s ease;
  background: url(../image/mail.svg) no-repeat center;
  background-size: contain;
  margin-inline-end: 1.25rem;
}

.c-column__telArea {
  color: #fff;
  font-size: clamp(14px, 1rem, 100px);
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-column__telArea {
    font-size: 0.9375rem;
  }
}

.c-column__telNumber {
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.c-column__telNumber::before {
  position: absolute;
  content: "";
  width: 2.125rem;
  height: 1.3125rem;
  display: inline-block;
  background: url(../image/tel.webp) no-repeat center;
  background-size: contain;
  margin-block-start: 0.375rem;
}
@media (max-width: 768px) {
  .c-column__telNumber::before {
    width: 2.03125rem;
    height: 1.25rem;
  }
}
@media (max-width: 768px) {
  .c-column__telNumber {
    font-size: 1.75rem;
  }
}

.c-column__telLink {
  color: #fff;
  display: flex;
  padding-inline-start: 3rem;
}
@media (max-width: 768px) {
  .c-column__telLink {
    padding-inline-start: 2.875rem;
  }
}

.c-column__telList + .c-column__telList {
  margin-block-start: 0.5rem;
}

.c-cards {
  display: grid;
  grid-template-columns: repeat(2, 36.25rem);
  justify-content: space-between;
  row-gap: 4.625rem;
}
@media (max-width: 1170px) {
  .c-cards {
    justify-content: center;
    column-gap: 2rem;
  }
}
@media (max-width: 768px) {
  .c-cards {
    grid-template-columns: 1fr;
  }
}

.c-card__image {
  height: 18.75rem;
  width: 100%;
  margin-block-end: 1.5rem;
}
@media (max-width: 768px) {
  .c-card__image {
    height: 12.5rem;
  }
}
.c-card__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
}

.c-point {
  background-color: #fff;
  padding-block: 3.125rem;
  padding-inline: 1.875rem;
  width: 1200px;
  max-width: 90%;
  margin-inline: auto;
  transform: translateY(-8.125rem);
}
@media (max-width: 768px) {
  .c-point {
    transform: translateY(-3.75rem);
    padding-block: 1.5rem;
    padding-inline: 0.5rem;
  }
}

.c-point__header {
  text-align: center;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.05em;
}

.c-point__items {
  margin-block-start: 3.1875rem;
  display: flex;
  justify-content: space-between;
  gap: 1.875rem;
}
@media (max-width: 768px) {
  .c-point__items {
    flex-direction: column;
    align-items: center;
  }
}

.c-point__item {
  padding-block-start: 1.4375rem;
  padding-block-end: 1.875rem;
  padding-inline: 1.875rem;
  border: 0.0625rem solid #203e76;
  width: 360px;
}
@media (max-width: 768px) {
  .c-point__item {
    width: 20rem;
    padding-inline: 1rem;
  }
}

.c-point__label {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #203e76;
  padding-block: 0.5rem;
  font-size: clamp(14px, 1rem, 100px);
  width: 100%;
  font-weight: 600;
}
@media (max-width: 768px) {
  .c-point__label {
    font-size: 1rem;
  }
}

.c-point__lead {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #203e76;
  font-size: clamp(16px, 1.125rem, 100px);
  line-height: 1.67;
  border-bottom: 0.0625rem solid #203e76;
  min-height: 108px;
}
@media (max-width: 768px) {
  .c-point__lead {
    font-size: 1.125rem;
  }
}

.c-point__text {
  margin-block-start: 1.6875rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .c-point__text {
    font-size: 1rem;
  }
}

.c-point.p-security-feature .c-point__text {
  text-align: left;
}

.c-point.--small .c-point__lead {
  border-bottom: 0;
}
.c-point.--small .c-point__lead {
  min-height: 48px;
  margin-block-start: 1.5rem;
}
.c-point.--small .c-point__items {
  margin-block-start: 0;
}
.c-point.--small .c-point__items:nth-child(2) {
  margin-block-start: 1.25rem;
}

.c-illust-cards {
  display: flex;
  justify-content: center;
  gap: 3.75rem;
}
@media (max-width: 768px) {
  .c-illust-cards {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
}

.c-illust-cards + .c-illust-cards {
  margin-block-start: 3.6875rem;
}

.c-illust-cards__card {
  width: 22.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
@media (max-width: 768px) {
  .c-illust-cards__card {
    width: 15rem;
  }
}

.c-illust-cards__cardImage {
  border-radius: 1.875rem;
}
.c-illust-cards__cardImage img {
  border-radius: 1.875rem;
  border: 0.1875rem solid #203e76;
}

.c-illust-cards__cardText {
  font-weight: 700;
  margin-block-start: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .c-illust-cards__cardText {
    margin-block-start: 1rem;
  }
}
.c-illust-cards__cardText.--white {
  color: #fff;
}
.c-illust-cards__cardText span {
  display: block;
  font-size: clamp(12px, 1rem, 100px);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}

.c-recommend {
  background-color: rgba(236, 234, 208, 0.36);
  padding-block-start: 9.125rem;
  padding-block-end: 9.375rem;
}
@media (max-width: 768px) {
  .c-recommend {
    padding-block: 6rem;
  }
}

.c-recommend__header {
  margin-block-end: 1rem;
  padding-inline-start: 4rem;
}
@media (max-width: 768px) {
  .c-recommend__header {
    padding-inline-start: 0;
    width: fit-content;
    margin-inline: auto;
  }
}

.c-recommend__lists {
  background-color: #fff;
  padding-block: 3rem;
  padding-inline: 6.25rem;
}
@media (max-width: 768px) {
  .c-recommend__lists {
    padding-inline: 1rem;
  }
}

.c-recommend__list {
  color: #203e76;
  font-size: clamp(16px, 1.125rem, 100px);
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.88;
  position: relative;
  padding-inline-start: 3.4375rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .c-recommend__list {
    padding-inline-start: 3rem;
  }
}
.c-recommend__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 2rem;
  transform: translate(0, -50%);
  display: inline-block;
  background: url(../image/check-icon.webp) no-repeat center;
  background-size: contain;
}
@media (max-width: 768px) {
  .c-recommend__list::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-recommend__list + .c-recommend__list {
  margin-block-start: 1.5rem;
}

.c-quality {
  background-color: #E95513;
  padding-block-start: 9.5rem;
  padding-block-end: 10rem;
}
@media (max-width: 768px) {
  .c-quality {
    padding-block: 6rem;
  }
}

.c-quality__lead {
  text-align: center;
  margin-block-start: 3.3125rem;
  font-size: clamp(16px, 1.5rem, 100px);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .c-quality__lead {
    font-size: 1rem;
  }
}

.c-quality__item {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
  margin-block-start: 4.5rem;
}
@media (max-width: 768px) {
  .c-quality__item {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.c-quality__image {
  width: 22.5rem;
}
@media (max-width: 1170px) {
  .c-quality__image {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .c-quality__image {
    margin-inline: auto;
    width: 80%;
  }
}

.c-quality__right {
  padding-block: 2.375rem;
  flex: 1;
  display: flex;
  gap: 4.3125rem;
}
@media (max-width: 1170px) {
  .c-quality__right {
    padding-block: 0;
  }
}
@media (max-width: 768px) {
  .c-quality__right {
    flex: none;
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

.c-quality__content {
  flex: 1;
}

.c-quality__icon {
  width: 12.5rem;
}

.c-quality__header {
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-quality__header {
    text-align: center;
  }
}

.c-quality__text {
  display: block;
  margin-block-start: 1.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .c-quality__text {
    margin-block-start: 1rem;
  }
}

.c-table-block {
  margin-block-start: 3.3125rem;
}

.c-table-block__row {
  display: flex;
  padding-block: 1.25rem;
  padding-inline: 3.125rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .c-table-block__row {
    flex-direction: column;
    padding-inline: 1rem;
    gap: 0.625rem;
  }
}
.c-table-block__row:nth-child(odd) {
  background-color: #f2f2f2;
}

.c-table-block__term {
  width: 10rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1rem, 100px);
  letter-spacing: 0.05em;
  color: #203e76;
  line-height: 1.87;
}
@media (max-width: 768px) {
  .c-table-block__term {
    width: 100%;
  }
}

.c-table-block__detail {
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(16px, 1rem, 100px);
  line-height: 1.87;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media (max-width: 768px) {
  .c-table-block__detail {
    width: 100%;
  }
}
.c-table-block__detail ul {
  padding-inline-start: 1.5rem;
}
.c-table-block__detail li {
  list-style-type: disc;
}

.c-linkButtons {
  display: flex;
  justify-content: center;
  margin-block-start: 6.625rem;
  column-gap: 1rem;
  row-gap: 1.25rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-linkButtons {
    margin-block-start: 3.3125rem;
  }
}

.c-linkButtons__button {
  max-width: 17.5rem;
  flex: 1;
  border: solid #203e76 0.0625rem;
  height: auto;
  min-height: 4.375rem;
  display: flex;
  align-items: center;
  padding-block: 0.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .c-linkButtons__button {
    flex: none;
    max-width: 25rem;
    width: 20.25rem;
    height: 5rem;
  }
}

.c-linkButtons__buttonLink {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #203e76;
  font-size: clamp(14px, 1.125rem, 100px);
  letter-spacing: 0.05em;
  font-weight: 500;
  height: inherit;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 0.5rem;
}
.c-linkButtons__buttonLink::after {
  content: "";
  width: 0.9375rem;
  height: 0.5rem;
  display: inline-block;
  background: url(../image/arrow-right-down.svg) no-repeat center;
  background-size: contain;
  margin-block-start: 0.75rem;
}

.c-section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .c-section-title {
    font-size: 1.5rem;
    line-height: 1.1666666667;
    letter-spacing: 0.04em;
  }
}
.c-section-title::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.75rem;
  height: 0.0625rem;
  background-color: #fff;
}

.c-section-title.--green {
  color: #003A17;
}
.c-section-title.--green::before {
  background-color: #003A17;
}

.p-header {
  width: 17.5rem;
  padding-block-start: 2.25rem;
  background-color: rgba(0, 58, 23, 0.8);
  box-shadow: 0.125rem 0.125rem 0.375rem rgba(32, 62, 118, 0.1);
  height: 100vh;
  min-height: 50rem;
  z-index: 5000;
  padding-block-end: 2.125rem;
}
@media (max-width: 1170px) {
  .p-header {
    width: 100%;
    height: 4.375rem;
    padding-block: 0;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 4.0625rem;
  }
}

.p-header__inner {
  margin-inline: auto;
  height: inherit;
  width: 100%;
  position: relative;
  z-index: 4000;
  border-radius: 0 0 1.25rem 1.25rem;
}
@media (max-width: 1170px) {
  .p-header__inner {
    display: flex;
    align-items: center;
    padding-inline-start: 0.8125rem;
    width: 83.125rem;
    max-width: 100%;
    height: inherit;
  }
}

.p-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: calc(100% - 10.125rem);
  margin-block-start: 2.625rem;
}
@media (max-width: 1170px) {
  .p-header__content {
    flex-direction: row;
    height: auto;
    margin-block-start: 0;
    flex: 1;
    justify-content: flex-end;
    gap: 1rem;
  }
}

.p-header__logo {
  display: flex;
  margin-inline: auto;
  width: 12.3125rem;
  margin-block-end: 0.25rem;
  height: 3.75rem;
}
@media (max-width: 1170px) {
  .p-header__logo {
    margin-inline-start: 0;
    margin-inline-end: auto;
    width: 10.8125rem;
    align-items: center;
    margin-block-end: 0;
    flex-shrink: 0;
  }
}

.p-header__navItem:not(:last-child) {
  margin-block-end: 2rem;
}

.p-header__navLink {
  height: inherit;
  display: block;
  color: #fff;
  position: relative;
  transition: color 0.3s ease;
}
.p-header__navLink:hover {
  opacity: 0.7;
}

.p-header__snsArea {
  width: 14.5625rem;
}
@media (max-width: 1170px) {
  .p-header__snsArea {
    width: auto;
  }
}

@media (max-width: 1170px) {
  .p-header__snsItems {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.p-header__snsItem + .p-header__snsItem {
  margin-block-start: 1.5rem;
}
@media (max-width: 1170px) {
  .p-header__snsItem + .p-header__snsItem {
    margin-block-start: 0;
    margin-inline-start: 0.5rem;
  }
}
@media (max-width: 1170px) {
  .p-header__snsItem {
    display: inline-block;
  }
}

.p-header__button {
  text-align: center;
}
.p-header__button:not(:last-child) {
  margin-block-end: 1.1875rem;
}

.p-header.--orange {
  background-color: #FEFBE7;
  box-shadow: none;
}
.p-header.--orange .p-header__navLink {
  color: #E95513;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 1170px) {
  .p-header.--orange {
    background-color: #FEFBE7;
  }
}

.p-drawer-menu {
  position: fixed;
  top: 4.375rem;
  right: 0;
  background-color: rgba(0, 58, 23, 0.48);
  width: 100%;
  height: 100vh;
  z-index: 2000;
  display: none;
}

.p-drawer-menu.--orange {
  background-color: rgba(233, 85, 19, 0.4);
}

.p-drawer-menu__inner {
  width: 18.75rem;
  max-width: 100%;
  height: auto;
  background-color: rgba(0, 58, 23, 0.8);
  margin-inline-start: auto;
  padding-block-end: 1.875rem;
  position: relative;
}

.p-drawer-menu__items {
  display: flex;
  flex-direction: column;
  width: 14.625rem;
  margin-inline: auto;
  margin-block-end: 0.5rem;
}

.p-drawer-menu__item {
  text-align: left;
}

.p-drawer-menu__link {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding-block-start: 0.75rem;
  padding-block-end: 0.75rem;
  display: inline-block;
  width: 100%;
  position: relative;
  transition: 0.3s ease color;
}
.p-drawer-menu__link:hover {
  opacity: 0.7;
}
.p-drawer-menu__link.--instagram {
  color: #203e76;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-block-start: 1rem;
}
.p-drawer-menu__link.--instagram::after {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  background-image: url("../image/instagram.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-drawer-menu__link:hover::after {
  opacity: 1;
}

.p-drawer-menu__cta {
  width: 17.875rem;
  margin-inline: auto;
  display: block;
}

.p-drawer-menu__instagram {
  margin-block-start: 1rem;
}

.p-drawer-menu.--orange .p-drawer-menu__inner {
  background-color: #FEFBE7;
}

.p-drawer-menu.--orange .p-drawer-menu__link {
  color: #E95513;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-hamburger {
  width: 2.5rem;
  height: 1.5rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5000;
}
.p-hamburger::after {
  content: "";
  width: 2.125rem;
  height: 0.5rem;
  background-image: url("../image/menu.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.875rem;
}

.p-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: #fff;
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 0.08125rem;
}
.p-hamburger span:nth-child(1) {
  top: 0;
}
.p-hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.p-hamburger span:nth-child(3) {
  bottom: 0;
}

.p-hamburger.is-active span:nth-child(1) {
  top: 0.5rem;
  transform: rotate(-45deg);
}
.p-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.p-hamburger.is-active span:nth-child(3) {
  top: 0.5rem;
  transform: rotate(45deg);
}

.p-hamburger::after {
  content: "MENU";
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  color: #fff;
  line-height: 1.3636363636;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-hamburger.is-active::after {
  content: "CLOSE";
}

.p-hamburger.is-active {
  top: 1.125rem;
}

.p-hamburger.--orange span {
  background-color: #E95513;
}

.p-hamburger.--orange::after {
  color: #E95513;
}

.p-fv {
  height: 100vh;
  background-color: #000;
  position: relative;
}
.p-fv::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25.375rem;
  height: 14.8125rem;
  background-image: url(../image/fv-deco.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 200;
}

.p-fv__swiper-block {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100vw;
}

.p-fv__inner,
.p-fv__swiper-container,
.p-fv__swiper {
  height: 100%;
  width: 100%;
}

.p-fv__inner.l-inner {
  width: 70.625rem;
  max-width: 100%;
}

.p-fv__copy-block {
  z-index: 300;
  position: relative;
}

.p-fv__swiper-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-fv__swiper-slide--1 {
  background-image: url(../image/fv1.png);
}
.p-fv__swiper-slide--2 {
  background-image: url(../image/fv2.png);
}
.p-fv__swiper-slide--3 {
  background-image: url(../image/fv3.png);
}

.p-fv__copy-block {
  color: #fff;
  height: inherit;
  position: relative;
}

.p-fv__copy {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4375;
  width: 100%;
  text-align: right;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 768px) {
  .p-fv__copy {
    font-size: 1.5rem;
    letter-spacing: 0.14em;
    line-height: 1.4583333333;
    top: 10.625rem;
    transform: none;
  }
}

.p-fv__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  margin-block-start: 1rem;
  position: absolute;
  bottom: 8.5rem;
  left: 0;
}
@media (max-width: 768px) {
  .p-fv__title {
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
    bottom: 8.125rem;
  }
}

.p-cta {
  background-image: url(../image/cta-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block-start: 4.75rem;
  padding-block-end: 4.875rem;
}
@media (max-width: 768px) {
  .p-cta {
    background-image: url(../image/cta-bg-sd.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-block-start: 3.125rem;
    padding-block-end: 3.375rem;
  }
}

.p-cta__containers {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-block-start: 3.25rem;
}
@media (max-width: 768px) {
  .p-cta__containers {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-block-start: 3.5rem;
  }
}

.p-cta__container {
  background-color: #fff;
  width: 23.75rem;
  padding-block-start: 2rem;
  padding-block-end: 3.0625rem;
  padding-inline: 2rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-cta__container {
    padding-block-end: 2.5rem;
  }
}

.p-cta__label {
  color: #003A17;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  margin-block-end: 2rem;
}
@media (max-width: 768px) {
  .p-cta__label {
    margin-block-end: 0.75rem;
  }
}

.p-cta__buttons {
  display: flex;
  margin-block-start: 2.75rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-cta__buttons {
    flex-direction: column;
    gap: 1.75rem;
    align-items: center;
    margin-block-start: 1.75rem;
  }
}

.p-cta__tel {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1428571429;
  letter-spacing: 0.04em;
  text-align: center;
  color: #2A2A2A;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-cta__tel {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
}
.p-cta__tel::before {
  content: "";
  width: 1.6875rem;
  height: 2.1875rem;
  display: inline-block;
  background-image: url(../image/tel-gold.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-inline-end: 0.5rem;
}

.p-cta__button {
  margin-block-start: 2.25rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-cta__button {
    margin-block-start: 2rem;
  }
}

.p-footer {
  background-color: #003A17;
  position: relative;
}

.p-footer__inner {
  padding-block-start: 2.5rem;
  padding-block-end: 0.9375rem;
}
@media (max-width: 768px) {
  .p-footer__inner {
    padding-block-start: 3.9375rem;
    padding-block-end: 0.625rem;
  }
}

.p-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #fff;
  padding-block-end: 2rem;
}

.p-footer__logo {
  width: 15.4375rem;
  display: inline-block;
  margin-block-end: 1.5rem;
  transition: opacity 0.3s ease;
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-footer__logo {
    width: 18.3125rem;
    margin-block-end: 1rem;
  }
}
.p-footer__logo:hover {
  opacity: 0.7;
}
.p-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-footer__info {
  color: #fff;
}
.p-footer__info + .p-footer__info {
  margin-block-start: 1.5rem;
}

.p-footer__info-name {
  font-size: 1rem;
  font-weight: 700;
  margin-block-end: 0.5rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.p-footer__info-address {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.p-footer__top-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.p-footer__nav {
  display: flex;
  gap: 5.625rem;
  padding-block-end: 2.5rem;
}

.p-footer__nav-item + .p-footer__nav-item {
  margin-block-start: 1rem;
}

.p-footer__nav-link {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4444444444;
  transition: color 0.3s ease;
}
.p-footer__nav-link:hover {
  opacity: 0.7;
}

.p-footer__bottom {
  text-align: right;
  padding-block-start: 0.5rem;
}
@media (max-width: 768px) {
  .p-footer__bottom {
    text-align: center;
  }
}

.p-footer__copyright {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4666666667;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-footer.--orange {
  background-color: #D2691E;
}

.p-contact {
  padding-block-start: 9.125rem;
  padding-block-end: 6.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-contact {
    padding-block-start: 8.4375rem;
    padding-block-end: 7.125rem;
  }
}

.p-contact__inner {
  position: relative;
  z-index: 100;
}

.p-contact-head__title {
  font-size: 2rem;
  line-height: 1.125;
  letter-spacing: 0.04em;
  color: #003A17;
  margin-block-end: 1rem;
}
@media (max-width: 768px) {
  .p-contact-head__title {
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-block-end: 0.5rem;
  }
}

.p-contact-head__lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: #003A17;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-contact-head__lead {
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 2.25;
  }
}

.p-contact__thanks {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
}

.p-contact__button-area {
  text-align: center;
  margin-block-start: 5rem;
}

.p-contact__button {
  margin-inline: auto;
  margin-block-start: 8.5625rem;
}

.p-form {
  margin-block-start: 5.625rem;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media (max-width: 768px) {
  .p-form {
    row-gap: 0.9375rem;
    margin-block-start: 2.5rem;
  }
}

.p-form__row {
  display: flex;
  flex-direction: column;
  row-gap: 0.6875rem;
}

.p-form__head {
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.25rem;
  color: #2A2A2A;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.p-form__head span.--must {
  position: relative;
  display: inline-block;
}
.p-form__head span.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 0.125rem);
  translate: 0 -50%;
  left: calc(100% + 0.875rem);
  font-size: clamp(12px, 0.75rem, 100px);
  font-weight: 700;
  display: inline-block;
  padding-inline: 1rem;
  padding-block: 0.25rem;
  background: #EED384;
  white-space: nowrap;
  line-height: 1;
  color: #003A17;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-form__head span.--must::after {
    padding-inline: 0.75rem;
    padding-block: 0.25rem;
    left: calc(100% + 0.75rem);
  }
}
@media (max-width: 768px) {
  .p-form__head {
    font-size: 1rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  padding-inline: 1rem;
  padding-block: 1rem;
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  color: #203e76;
  background-color: #fff;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #DEDEDE;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #DEDEDE;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #DEDEDE;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #DEDEDE;
}
@media (max-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea {
    font-size: 1rem;
    padding-block: 0.8125rem;
  }
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.p-form__data-checkbox {
  display: flex;
  gap: clamp(16px, 1rem, 100px);
  justify-content: center;
  margin-block-start: 1.25rem;
}
.p-form__data-checkbox span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #2A2A2A;
  letter-spacing: 0.04em;
  line-height: 2.25;
  padding-left: 2rem;
  position: relative;
}
.p-form__data-checkbox span a {
  color: #203e76;
  text-decoration: underline;
  transition: opacity 0.3s;
  font-weight: 400;
}
.p-form__data-checkbox span a:hover {
  opacity: 0.7;
}
.p-form__data-checkbox span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  border: 0.0625rem solid #F4BD18;
  transform: translateY(-50%);
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-form__data-checkbox span::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.p-form__data-checkbox span::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 0.625rem;
  height: 1rem;
  rotate: 45deg;
  border-right: 0.1875rem solid #003A17;
  border-bottom: 0.1875rem solid #003A17;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .p-form__data-checkbox span::after {
    width: 0.75rem;
    height: 1.375rem;
    top: 0;
    left: 0.625rem;
  }
}
@media (max-width: 768px) {
  .p-form__data-checkbox span {
    font-size: 1rem;
    padding-left: 2.25rem;
  }
}

.p-form__submit {
  margin-inline: auto;
  color: #003A17;
  font-weight: 700;
  letter-spacing: 0.36em;
  padding-block: 0.625rem;
  background-color: #EED384;
  width: 26.25rem;
  display: block;
  max-width: 100%;
  position: relative;
  margin-block-start: 1.3125rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-form__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 3.625rem;
  height: 0.25rem;
  background-image: url(../image/submit-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: filter 0.3s ease;
}
.p-form__submit:hover {
  background-color: #C9A023;
  color: #fff;
}
.p-form__submit:hover::before {
  filter: brightness(0) invert(1);
}

.p-form__privacyPolicy {
  width: 100%;
  height: 15rem;
  padding-inline: 0.8125rem;
  padding-block: 0.75rem;
  overflow-y: auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .p-form__privacyPolicy {
    height: 11.25rem;
  }
}
.p-form__privacyPolicy::-webkit-scrollbar {
  width: 1rem;
}
.p-form__privacyPolicy::-webkit-scrollbar-track {
  background-color: #EFEFEF;
}
.p-form__privacyPolicy::-webkit-scrollbar-thumb {
  background-color: #EED384;
  border-radius: 0;
}

.p-form__privacyPolicyHeader {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-size: clamp(16px, 1.25rem, 100px);
  margin-block-end: 1rem;
  color: #2A2A2A;
}
@media (max-width: 768px) {
  .p-form__privacyPolicyHeader {
    font-size: 1rem;
    letter-spacing: 0.2em;
  }
}

.p-form__privacyPolicySubHeader {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: clamp(15px, 1.125rem, 100px);
  margin-block-start: 1rem;
  margin-block-end: 0.5rem;
  color: #2A2A2A;
}
@media (max-width: 768px) {
  .p-form__privacyPolicySubHeader {
    font-size: 1.125rem;
  }
}

.p-form__privacyPolicyText {
  font-size: clamp(16px, 1rem, 100px);
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #2A2A2A;
}
@media (max-width: 768px) {
  .p-form__privacyPolicyText {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.p-form__privacyPolicyBlock {
  margin-block-start: 1.25rem;
}

.p-form__privacyPolicyDate {
  margin-block-start: 1.25rem;
}

span.wpcf7-list-item::before {
  display: none;
}

span.wpcf7-acceptance::before {
  display: none;
}

span.wpcf7-form-control-wrap::before {
  display: none;
}

.p-about {
  background-image: url(../image/about-bg.png);
  background-size: cover;
  background-position: right 20% center;
  background-repeat: no-repeat;
  padding-block-start: 8.125rem;
  padding-block-end: 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .p-about {
    padding-block-start: 6.75rem;
    padding-block-end: 9.375rem;
  }
}

.p-about__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.40625;
  text-align: center;
  color: #fff;
  margin-block-end: 2.5rem;
}
@media (max-width: 768px) {
  .p-about__title {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-block-end: 2rem;
  }
}

.p-about__text {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #fff;
}

.p-about__button-area {
  margin-block-start: 4.5rem;
  width: fit-content;
  margin-inline: auto;
}

.p-side-dish {
  position: relative;
}
@media (max-width: 400px) {
  .p-side-dish {
    height: 38.0625rem;
  }
}
.p-side-dish::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72.5rem;
  max-width: 100%;
  height: 47.9375rem;
  background-image: url(../image/top-souzai.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 400px) {
  .p-side-dish::before {
    background-image: url(../image/top-side-dish-sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 38.0625rem;
    background-position: top center;
  }
}

.p-side-dish__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-block-end: 5rem;
  padding-block-start: 30rem;
}
@media (max-width: 1100px) {
  .p-side-dish__inner {
    padding-block-end: 2.5rem;
  }
}
@media (max-width: 768px) {
  .p-side-dish__inner {
    padding-block-end: 1.25rem;
  }
}
@media (max-width: 400px) {
  .p-side-dish__inner {
    padding-block-start: 16rem;
  }
}

.p-side-dish__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  color: #D2691E;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-block-end: 1rem;
}
@media (max-width: 768px) {
  .p-side-dish__title {
    font-size: 1.5rem;
    margin-block-end: 2.1875rem;
  }
}

.p-side-dish__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  text-align: center;
  color: #2A2A2A;
  margin-block-end: 1rem;
}
@media (max-width: 768px) {
  .p-side-dish__text {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
    text-align: left;
    margin-block-end: 1.625rem;
  }
}

.p-info {
  padding-block-start: 3.875rem;
}
@media (max-width: 768px) {
  .p-info {
    padding-block-start: 5.375rem;
  }
}

.p-info__items {
  display: flex;
  gap: 1.25rem;
  margin-block-start: 4.125rem;
}
@media (max-width: 768px) {
  .p-info__items {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-info__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: #fff;
  padding-block-start: 2.125rem;
  padding-inline: 1.375rem;
  padding-block-end: 1.5rem;
  flex: 1;
}

.p-info__name {
  color: #2A2A2A;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  position: relative;
}
.p-info__name::before {
  content: "";
  position: absolute;
  bottom: -1.375rem;
  left: 0;
  width: 3.75rem;
  height: 0.0625rem;
  background-color: #CEC873;
}

.p-info__image {
  margin-block-start: 1.5rem;
}

.p-info__detail {
  display: flex;
}

.p-info__label,
.p-info__value {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.p-info__label {
  color: #CEC873;
  width: 5.5rem;
}

.p-info__value,
.p-info__value a {
  color: #2A2A2A;
  flex: 1;
}

.p-info__map {
  width: 100%;
  aspect-ratio: 376/200;
}
.p-info__map iframe {
  width: 100%;
  height: 100%;
}

.p-info.--recruit {
  background-image: url(../image/overview-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
  padding-block-start: 0;
}
.p-info.--recruit .p-info__inner {
  transform: translateY(-10.125rem);
}

.p-green-bg {
  position: relative;
}
.p-green-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-image: url(../image/info-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-block-start: 3.875rem;
  padding-block-end: 12.625rem;
  z-index: -1;
}

.p-instagram {
  margin-block-start: 9.625rem;
  padding-block-end: 12.625rem;
}
@media (max-width: 768px) {
  .p-instagram {
    margin-block-start: 7.75rem;
    padding-block-end: 8.6875rem;
  }
}

.p-instagram__items {
  margin-block-start: 5.125rem;
  display: flex;
  gap: 3.125rem;
}
@media (max-width: 768px) {
  .p-instagram__items {
    flex-direction: column;
    gap: 4.375rem;
  }
}

.p-instagram__item {
  flex: 1;
}

.p-instagram__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5555555556;
  color: #fff;
  text-align: center;
}

.p-instagram__link {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2.5;
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
}

.p-recruit {
  padding-block-start: 3.875rem;
  background-image: url(../image/recruit-bg.png);
  background-size: cover;
  background-position: right 30% center;
  background-repeat: no-repeat;
  height: 45rem;
}
@media (max-width: 768px) {
  .p-recruit {
    height: 38.75rem;
    background-position: right 30% bottom;
  }
}

.p-recruit__content {
  background-color: #fff;
  margin-block-start: 3rem;
  width: 37.5rem;
  max-width: 100%;
  margin-inline: auto;
  padding-block-start: 3.0625rem;
  padding-block-end: 2.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .p-recruit__content {
    margin-block-start: 3.875rem;
  }
}

.p-recruit__text {
  color: #2A2A2A;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .p-recruit__text {
    font-size: 0.9375rem;
    line-height: 1.5333333333;
    letter-spacing: 0.04em;
  }
}

.p-recruit__button-area {
  margin-block-start: 2.3125rem;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-recruit__button-area {
    margin-block-start: 1rem;
  }
}

.p-about-top {
  padding-block-start: 5.5rem;
}
@media (max-width: 768px) {
  .p-about-top {
    padding-block-start: 2.8125rem;
  }
}

.p-about-top__text {
  margin-block-start: 3.6875rem;
  color: #003A17;
  font-weight: 400;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .p-about-top__text {
    margin-block-start: 2.5rem;
  }
}

.p-about-policy {
  margin-block-start: 11.75rem;
}
@media (max-width: 768px) {
  .p-about-policy {
    margin-block-start: 8.3125rem;
  }
}

.p-about-policy__items {
  margin-block-start: 6.375rem;
  display: flex;
  flex-direction: column;
  gap: 6.6875rem;
}
@media (max-width: 768px) {
  .p-about-policy__items {
    margin-block-start: 2.5rem;
    gap: 2.8125rem;
  }
}

.p-about-policy__item {
  display: flex;
  gap: 1.875rem;
  align-items: center;
}
@media (max-width: 768px) {
  .p-about-policy__item {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.p-about-policy__item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-about-policy__item:nth-child(odd) {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.p-about-policy__image {
  width: 23.75rem;
}
@media (max-width: 768px) {
  .p-about-policy__image {
    width: 100%;
  }
}

.p-about-policy__content {
  flex: 1;
}

.p-about-policy__header {
  font-weight: 700;
  line-height: 1;
  font-size: 1.75rem;
  color: #003A17;
  margin-block-end: 1.5rem;
}
@media (max-width: 768px) {
  .p-about-policy__header {
    font-size: 1.25rem;
    margin-block-end: 1rem;
  }
}
.p-about-policy__header span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #003A17;
  display: block;
  margin-block-end: 0.5rem;
}
@media (max-width: 768px) {
  .p-about-policy__header span {
    font-size: 0.9375rem;
    margin-block-end: 0.5rem;
  }
}

.p-about-policy__text {
  color: #003A17;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .p-about-policy__text {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
  }
}

.p-overview {
  margin-block-start: 14.0625rem;
  position: relative;
  padding-block-end: 9.0625rem;
}
@media (max-width: 768px) {
  .p-overview {
    margin-block-start: 8.3125rem;
    padding-block-end: 13.5625rem;
  }
}
.p-overview::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 47.1875rem;
  background-image: url(../image/overview-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-overview::before {
    height: 53.125rem;
  }
}

.p-overview__content {
  background-color: #FEFBE7;
  margin-block-start: 4rem;
  padding-inline: 1.875rem;
  padding-block-start: 3.5rem;
  padding-block-end: 1rem;
}
@media (max-width: 768px) {
  .p-overview__content {
    margin-block-start: 2.5rem;
    padding-inline: 1.125rem;
    padding-block-start: 2.1875rem;
    padding-block-end: 3.125rem;
  }
}

.p-overview__row {
  display: flex;
  gap: 1.875rem;
  padding-inline: 1rem;
  padding-block-end: 1rem;
}
@media (max-width: 768px) {
  .p-overview__row {
    gap: 1rem;
    padding-inline: 0;
    padding-block-end: 1rem;
    align-items: flex-start;
  }
}
.p-overview__row + .p-overview__row {
  margin-block-start: 0.75rem;
}
.p-overview__row:not(:last-child) {
  border-bottom: 0.0625rem solid #F3EBD2;
}

.p-overview__label {
  width: 5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2.25;
  letter-spacing: 0.04em;
  color: #003A17;
}
@media (max-width: 768px) {
  .p-overview__label {
    width: 3rem;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

.p-overview__value {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #2A2A2A;
}
.p-overview__value span {
  padding-inline-start: 4rem;
}
@media (max-width: 768px) {
  .p-overview__value span {
    padding-inline-start: 0;
  }
}
@media (max-width: 768px) {
  .p-overview__value {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}

.p-overview__value-small-block + .p-overview__value-small-block {
  margin-block-start: 0.5rem;
}

.p-overview__value-small {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2A2A2A;
  padding-inline-start: 1rem;
}
@media (max-width: 768px) {
  .p-overview__value-small {
    font-size: 0.8125rem;
    line-height: 1.2307692308;
    letter-spacing: 0.04em;
    padding-inline-start: 0;
  }
}
.p-overview__value-small a {
  color: #2A2A2A;
}

.p-recruit-top {
  margin-block-start: 11.75rem;
  padding-block-end: 56.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-recruit-top {
    margin-block-start: 3.5rem;
    padding-block-end: 41.5625rem;
  }
}
.p-recruit-top::before {
  content: "";
  position: absolute;
  bottom: 5.5rem;
  right: 10.3125rem;
  width: 42.875rem;
  max-width: 100%;
  height: 47.9375rem;
  background-image: url(../image/recruit.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .p-recruit-top::before {
    height: 33.8125rem;
    bottom: 6.25rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../image/recruit-sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.p-recruit-top__text {
  margin-block-start: 3.6875rem;
  color: #003A17;
  font-weight: 400;
  line-height: 1.75;
}

.p-recruit-top__paragraph {
  text-align: center;
}
@media (max-width: 768px) {
  .p-recruit-top__paragraph {
    text-align: left;
  }
}
.p-recruit-top__paragraph + .p-recruit-top__paragraph {
  margin-block-start: 1.5rem;
}

.p-recruit-top__image {
  width: 23.75rem;
}

.p-recruit-top__content {
  flex: 1;
}

.p-recruit-top__header {
  font-weight: 700;
  line-height: 1;
  font-size: 1.75rem;
  color: #003A17;
  margin-block-end: 1.5rem;
}
.p-recruit-top__header span {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #003A17;
  display: block;
  margin-block-end: 0.5rem;
}

.p-requirement {
  padding-block-start: 5rem;
  padding-block-end: 9.0625rem;
  padding-block-end: 18.125rem;
  position: relative;
  z-index: -1;
}
.p-requirement::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-image: url(../image/requirement-bg.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-block-start: 3.875rem;
  padding-block-end: 12.625rem;
  z-index: -1;
}

.p-requirement__content {
  background-color: #FEFBE7;
  margin-block-start: 4rem;
  padding-inline: 1.875rem;
  padding-block-start: 3.5rem;
  padding-block-end: 1rem;
}
@media (max-width: 768px) {
  .p-requirement__content {
    margin-block-start: 2.5rem;
    padding-inline: 1.125rem;
    padding-block-start: 2.1875rem;
    padding-block-end: 3.125rem;
  }
}

.p-requirement__row {
  display: flex;
  gap: 1.875rem;
  padding-inline: 1rem;
  padding-block-end: 1rem;
}
@media (max-width: 768px) {
  .p-requirement__row {
    gap: 0.875rem;
    padding-inline: 0;
    padding-block-end: 1rem;
    align-items: flex-start;
  }
}
.p-requirement__row:not(:last-child) {
  border-bottom: 0.0625rem solid #F3EBD2;
}
.p-requirement__row + .p-requirement__row {
  margin-block-start: 0.75rem;
}
.p-requirement__row .p-requirement__label {
  width: 7.5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2.25;
  letter-spacing: 0.04em;
  color: #003A17;
}
@media (max-width: 768px) {
  .p-requirement__row .p-requirement__label {
    width: 4rem;
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
.p-requirement__row .p-requirement__value {
  flex: 1;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #2A2A2A;
}
.p-requirement__row .p-requirement__value span {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  padding-inline-start: 4rem;
}
@media (max-width: 768px) {
  .p-requirement__row .p-requirement__value span {
    padding-inline-start: 0;
  }
}
@media (max-width: 768px) {
  .p-requirement__row .p-requirement__value {
    font-size: 0.9375rem;
    line-height: 1.3333333333;
    letter-spacing: 0.04em;
  }
}
.p-requirement__row .p-requirement__value-small {
  flex: 1;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2A2A2A;
  padding-inline-start: 1rem;
}
@media (max-width: 768px) {
  .p-requirement__row .p-requirement__value-small {
    font-size: 0.8125rem;
    line-height: 1.2307692308;
    letter-spacing: 0.04em;
    padding-inline-start: 0;
  }
}
.p-requirement__row .p-requirement__value-small a {
  color: #2A2A2A;
}

.p-sd-fv {
  position: fixed;
  width: inherit;
  top: 0;
  right: 0;
  margin-inline: auto;
  min-height: 80.9375rem;
}
@media (max-width: 768px) {
  .p-sd-fv {
    min-height: 49.125rem;
    top: 4.375rem;
  }
}
.p-sd-fv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 7.875rem;
  background-image: url(../image/fabric.png);
  background-size: cover;
  background-position: bottom center;
  background-repeat: repeat;
  z-index: 300;
}
@media (max-width: 768px) {
  .p-sd-fv::before {
    height: 3.625rem;
  }
}
.p-sd-fv::after {
  content: "";
  position: absolute;
  top: 4.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 62.5rem;
  height: 25rem;
  background-image: url(../image/side-dish-souzai.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 300;
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-sd-fv::after {
    top: 2.5rem;
    height: 18.75rem;
    width: 31.25rem;
    background-size: contain;
    background-position: center top;
  }
}
@media (max-width: 400px) {
  .p-sd-fv::after {
    width: 31.25rem;
    max-width: none;
    height: 10rem;
  }
}

.p-sd-fv__title {
  position: sticky;
  top: 0;
  z-index: 400;
  width: 100%;
  height: 43.625rem;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .p-sd-fv__title {
    top: 1.875rem;
    height: 18.75rem;
  }
}
.p-sd-fv__title img {
  width: auto;
  height: 100%;
  object-fit: cover;
  margin-inline: auto;
}

.p-sd-fv__title-text {
  height: inherit;
}

.p-sd-fv__family {
  position: relative;
  width: 100%;
  padding-block-start: 31rem;
  z-index: 200;
  background-color: #FEFCEF;
}
@media (max-width: 1100px) {
  .p-sd-fv__family {
    padding-block-start: 37.5rem;
  }
}
@media (max-width: 768px) {
  .p-sd-fv__family {
    padding-block-start: 20.625rem;
  }
}
@media (max-width: 400px) {
  .p-sd-fv__family {
    padding-block-start: 14.375rem;
  }
}

.p-sd-fv__content {
  position: relative;
  z-index: 500;
  padding-block-start: 54.5rem;
  padding-block-end: 13.8125rem;
}
.p-sd-fv__content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50.1875rem;
  background-image: url(../image/sd-family.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-sd-fv__content::before {
    background-image: url(../image/sd-family-sp.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 34.25rem;
  }
}
@media (max-width: 768px) {
  .p-sd-fv__content {
    padding-block-start: 23.75rem;
    padding-block-end: 8.3125rem;
  }
}

.p-sd-fv__content-title {
  color: #E95513;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .p-sd-fv__content-title {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}

.p-sd-fv__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-weight: 500;
  margin-block-start: 2.25rem;
  color: #2A2A2A;
  width: 36.6875rem;
  margin-inline: auto;
  max-width: 100%;
  height: inherit;
}
@media (max-width: 768px) {
  .p-sd-fv__text {
    width: 21.25rem;
  }
}

.p-sd-fv__column {
  padding-block-start: 9.625rem;
  padding-block-end: 5.5rem;
  position: relative;
  background-color: #FEFCEF;
  z-index: 2;
}
.p-sd-fv__column::after {
  content: "";
  position: absolute;
  top: -6.25rem;
  left: 0;
  width: 100%;
  height: 50.1875rem;
  background-color: #FEFCEF;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-sd-fv__column {
    padding-block-start: 5rem;
    padding-block-end: 7.5rem;
  }
}

.p-sd-fv__item {
  width: 48rem;
  height: 26.25rem;
  padding-block-end: 3.75rem;
  padding-inline: 1.5rem;
  max-width: 100%;
}
z .p-sd-fv__item + .p-sd-fv__item {
  margin-block-start: 5.1875rem;
}
@media (max-width: 768px) {
  z .p-sd-fv__item + .p-sd-fv__item {
    margin-block-start: 6.875rem;
  }
}
@media (max-width: 768px) {
  .p-sd-fv__item {
    height: 29.75rem;
    width: 23.4375rem;
  }
}

.p-sd-fv__item-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .p-sd-fv__item-inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.p-sd-fv__item:nth-child(even) {
  background-image: url(../image/side-dish-right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-inline-start: auto;
  padding-inline-start: 2.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(even) {
    background-image: url(../image/side-dish-right.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    justify-content: center;
    padding-inline: 1.0625rem;
  }
}
.p-sd-fv__item:nth-child(even)::before {
  content: "";
  position: absolute;
  bottom: -9rem;
  right: 1.25rem;
  width: 22.625rem;
  height: 17.9375rem;
  background-image: url(../image/green-deco-sub.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 200;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(even)::before {
    width: 12.375rem;
    height: 9.81125rem;
    bottom: -3.75rem;
    right: 0rem;
    left: auto;
  }
}
.p-sd-fv__item:nth-child(even)::after {
  content: "";
  position: absolute;
  bottom: -9rem;
  right: 1.25rem;
  width: 22.625rem;
  height: 17.9375rem;
  background-image: url(../image/green-deco.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(even)::after {
    width: 12.375rem;
    height: 9.875rem;
    bottom: -3.75rem;
    right: 0rem;
    left: auto;
  }
}

.p-sd-fv__item:nth-child(even) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(even) .p-sd-fv__item-inner::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: -16.25rem;
  width: 25.9375rem;
  height: 4.375rem;
  background-image: url(../image/flower-deco.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(even) .p-sd-fv__item-inner::before {
    width: 23.4375rem;
    height: 3.875rem;
    bottom: -1.5rem;
    right: -1.5rem;
    left: auto;
  }
}

.p-sd-fv__item:nth-child(odd) {
  background-image: url(../image/side-dish-left.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(odd) {
    background-image: url(../image/side-dish-left.png);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding-inline: 1.0625rem;
  }
}
.p-sd-fv__item:nth-child(odd) .p-sd-fv__item-inner {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(odd) .p-sd-fv__item-inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

.p-sd-fv__item:nth-child(1) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(1) .p-sd-fv__item-inner::after {
  content: "";
  position: absolute;
  bottom: -4.375rem;
  right: -5.625rem;
  width: 21.75rem;
  height: 11.9375rem;
  background-image: url(../image/corokke.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(1) .p-sd-fv__item-inner::after {
    bottom: -9.375rem;
    right: -1.5rem;
  }
}

.p-sd-fv__item:nth-child(2) .p-sd-fv__item-inner,
.p-sd-fv__item:nth-child(8) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(2) .p-sd-fv__item-inner::after,
.p-sd-fv__item:nth-child(8) .p-sd-fv__item-inner::after {
  content: "";
  position: absolute;
  top: -4.5rem;
  right: 5.625rem;
  width: 8.6875rem;
  height: 7.5625rem;
  background-image: url(../image/orange.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(2) .p-sd-fv__item-inner::after,
  .p-sd-fv__item:nth-child(8) .p-sd-fv__item-inner::after {
    width: 6.8125rem;
    height: 5.9375rem;
    top: -1.5rem;
    right: -0.4375rem;
  }
}

@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(8) {
    height: 33rem;
  }
}

.p-sd-fv__item:nth-child(3) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(3) .p-sd-fv__item-inner::after {
  content: "";
  position: absolute;
  top: -4.25rem;
  left: -1rem;
  width: 11.875rem;
  height: 8.125rem;
  background-image: url(../image/pan.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(3) .p-sd-fv__item-inner::after {
    width: 7.5rem;
    height: 5rem;
    top: -2.625rem;
    left: -0.4375rem;
  }
}

.p-sd-fv__item:nth-child(4) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(4) .p-sd-fv__item-inner::after {
  content: "";
  position: absolute;
  top: -5.625rem;
  right: 5rem;
  width: 7.5rem;
  height: 8.75rem;
  background-image: url(../image/woman1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(4) .p-sd-fv__item-inner::after {
    width: 5.5rem;
    height: 6.875rem;
    top: -5rem;
    right: -1.0625rem;
  }
}

.p-sd-fv__item:nth-child(5) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(5) .p-sd-fv__item-inner::after {
  content: "";
  position: absolute;
  top: -5.3125rem;
  left: -1rem;
  width: 12.625rem;
  height: 8.3125rem;
  background-image: url(../image/kids.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(5) .p-sd-fv__item-inner::after {
    width: 9.5rem;
    height: 6.25rem;
    top: -3.125rem;
    left: -1.0625rem;
  }
}

.p-sd-fv__item:nth-child(6) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(6) .p-sd-fv__item-inner::after {
  content: "";
  position: absolute;
  top: -5.625rem;
  right: 3.75rem;
  width: 10rem;
  height: 7.1875rem;
  background-image: url(../image/pot.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(6) .p-sd-fv__item-inner::after {
    width: 7.25rem;
    height: 5.3125rem;
    top: -5.1875rem;
    right: -1.0625rem;
  }
}

.p-sd-fv__item:nth-child(9) .p-sd-fv__item-inner {
  position: relative;
}
.p-sd-fv__item:nth-child(9) .p-sd-fv__item-inner::after {
  content: "";
  position: absolute;
  top: -6.25rem;
  left: -1rem;
  width: 13rem;
  height: 8.375rem;
  background-image: url(../image/eldery.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-sd-fv__item:nth-child(9) .p-sd-fv__item-inner::after {
    width: 9.875rem;
    height: 6.6875rem;
    top: -4.5rem;
    left: 0;
  }
}

.p-sd-fv__item-image {
  width: 26.875rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-sd-fv__item-image {
    width: 16.875rem;
  }
}
.p-sd-fv__item-image.--narrow {
  width: 25rem;
}
.p-sd-fv__item-image.--narrow2 {
  width: 23.0625rem;
}

.p-sd-fv__item-text {
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #2A2A2A;
  margin-block-start: 1rem;
  width: 16.25rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-sd-fv__item-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
    width: 100%;
    margin-block-start: 0.5rem;
  }
}

.p-sd-fv__item-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #2A2A2A;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media (max-width: 768px) {
  .p-sd-fv__item-name.--small {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .p-sd-fv__item-name {
    display: inline-block;
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: 0.04em;
  }
}
.p-sd-fv__item-name.--small {
  font-size: 1.25rem;
}

.p-sd-fv__items {
  position: relative;
  margin-inline: auto;
}
.p-sd-fv__items::before {
  content: "";
  position: absolute;
  top: -8.5rem;
  left: 1.5rem;
  width: 17.625rem;
  height: 8.5rem;
  background-image: url(../image/3people.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-sd-fv__items::before {
    width: 12rem;
    top: -6.875rem;
  }
}
.p-sd-fv__items::after {
  content: "";
  position: absolute;
  top: -16.25rem;
  right: 1.25rem;
  width: 22.625rem;
  height: 17.9375rem;
  background-image: url(../image/green-deco.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-sd-fv__items::after {
    width: 12.375rem;
    top: -15.875rem;
    right: 0;
  }
}

.p-sd-fv__family::before {
  content: "";
  position: absolute;
  bottom: -11.125rem;
  right: 1.25rem;
  width: 22.625rem;
  height: 17.9375rem;
  background-image: url(../image/green-deco.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-sd-fv__item-shop {
  font-size: 0.8125rem;
  color: #fff;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2.1538461538;
  border-radius: 1.25rem;
  width: fit-content;
  padding-inline: 1rem;
  margin-block-start: 0.5rem;
}
@media (max-width: 768px) {
  .p-sd-fv__item-shop {
    display: inline-block;
  }
}
.p-sd-fv__item-shop.--orange {
  background-color: #D2691E;
}
.p-sd-fv__item-shop.--yellow {
  background-color: #F4BD18;
}

.p-sd-fv__caption {
  font-size: 0.875rem;
  color: #E95513;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .p-sd-fv__item-content {
    margin-block-start: 0.5rem;
  }
}

.p-cta-sd {
  background-image: url(../image/cta-sd-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block-start: 4.75rem;
  padding-block-end: 17.1875rem;
  position: relative;
}

.p-cta-sd__header {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #E95513;
  font-weight: 700;
  text-align: center;
}

.p-cta-sd__containers {
  margin-block-start: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .p-cta-sd__containers {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.p-cta-sd__container {
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 23.75rem;
  padding-block: 2.5rem;
  padding-inline: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  padding-block: 3.5625rem;
}
@media (max-width: 768px) {
  .p-cta-sd__container {
    width: 21.25rem;
    padding-inline: 1.25rem;
    padding-block: 3.5rem;
  }
}

.p-cta-sd__label {
  color: #E95513;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-block-end: 0.75rem;
}

.p-cta-sd__buttons {
  display: flex;
  margin-block-start: 1.875rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .p-cta-sd__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.p-cta-sd__tel {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1428571429;
  letter-spacing: 0.04em;
  text-align: center;
  color: #2A2A2A;
  display: flex;
  align-items: center;
  position: relative;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
}
.p-cta-sd__tel::before {
  content: "";
  width: 1.6875rem;
  height: 2.1875rem;
  display: inline-block;
  background-color: #E95513;
  mask-image: url(../image/tel-gold.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../image/tel-gold.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  margin-inline-end: 0.5rem;
}

.p-contact-thanks {
  padding-block-start: 8.375rem;
  padding-block-end: 21rem;
  position: relative;
}
.p-contact-thanks::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 100;
}
@media (max-width: 768px) {
  .p-contact-thanks {
    padding-block-start: 12.3125rem;
  }
}

.p-contact-thanks__inner {
  position: relative;
  z-index: 100;
}

.p-contact-thanks__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.125;
  color: #003A17;
  margin-block-end: 2.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-contact-thanks__title {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-block-end: 2.3125rem;
  }
}

.p-contact-thanks__message {
  text-align: center;
  color: #003A17;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-block-end: 2.875rem;
}
@media (max-width: 768px) {
  .p-contact-thanks__message {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-block-end: 4.6875rem;
    text-align: left;
  }
}

.p-contact-thanks__text + .p-contact-thanks__text {
  margin-block-start: 1.5rem;
}

.p-notFound {
  padding-block-start: 8.375rem;
  padding-block-end: 21rem;
  position: relative;
}
@media (max-width: 768px) {
  .p-notFound {
    padding-block-start: 12.3125rem;
    padding-block-end: 13.3125rem;
  }
}

.p-notFound__inner {
  text-align: center;
  position: relative;
  z-index: 100;
}

.p-notFound__main strong {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.125;
  color: #003A17;
  margin-block-end: 2.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-notFound__main strong {
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-block-end: 2.3125rem;
  }
}

.p-notFound__message {
  text-align: center;
  color: #003A17;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-block-end: 2.875rem;
}
@media (max-width: 768px) {
  .p-notFound__message {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-block-end: 4.6875rem;
    text-align: left;
  }
}

.p-notFound__text + .p-notFound__text {
  margin-block-start: 1.5rem;
}

.p-notFound__buttonArea {
  width: fit-content;
  margin-inline: auto;
}

.p-notFound__lead {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.125;
  color: #003A17;
  margin-block-end: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-notFound__lead {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-block-end: 2rem;
  }
}

.animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 100;
  display: none;
  visibility: hidden;
  opacity: 0;
}

.animation img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.door-left1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-99%);
  width: 25.875rem;
  height: inherit;
  z-index: 1;
}

.door-left1 img,
.door-left2 img {
  object-position: right;
}

.door-right1 img,
.door-right2 img {
  object-position: left;
}

.door-left2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 25.875rem;
  height: 100%;
  z-index: 10;
}

.door-right1 {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(99%);
  width: 25.875rem;
  height: 100%;
  z-index: 1;
}

.door-right2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25.875rem;
  height: 100%;
  z-index: 10;
}

@media (max-width: 500px) {
  .u-hide--md-small {
    display: none;
  }
}

@media (max-width: 748px) {
  .u-hide--md-20 {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-hide--md {
    display: none;
  }
}

@media (max-width: 1100px) {
  .u-hide--lg {
    display: none;
  }
}

@media (max-width: 1170px) {
  .u-hide--pc-small {
    display: none;
  }
}

@media (max-width: 1320px) {
  .u-hide--pc-small2 {
    display: none;
  }
}

@media (max-width: 1279px) {
  .u-hide--pc {
    display: none;
  }
}

.texture-bg {
  position: relative;
}
.texture-bg::before {
  background-image: url(../image/texture-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  z-index: -1000;
}

.u-show--sp-big {
  display: none;
}
@media (max-width: 400px) {
  .u-show--sp-big {
    display: block;
  }
}

.u-show--md-small {
  display: none;
}
@media (max-width: 500px) {
  .u-show--md-small {
    display: block;
  }
}

.u-show--md {
  display: none;
}
@media (max-width: 768px) {
  .u-show--md {
    display: block;
  }
}

.u-show--lg {
  display: none;
}
@media (max-width: 1100px) {
  .u-show--lg {
    display: block;
  }
}

.u-show--pc-small {
  display: none;
}
@media (max-width: 1170px) {
  .u-show--pc-small {
    display: block;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=style.css.map */