@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap);
@charset "UTF-8";
:root {
  --base-color: #F6F7F0;
  --main-color: #F57F00;
  --sub-color: #A4CE5F;
  --accent-color: #000;
  --text-color: #3E2214;
  --link-color: #04c;
  --white-color: #FFF;
  --base-font-size: 1rem;
  --base-font-weight: 400;
  --base-font-medium: 500;
  --base-font-bold: 700;
  --base-line-height: 1.625;
  --base-font-family: "Noto Sans JP","Hiragino Sans","Meiryo","Hiragino Kaku Gothic ProN","Arial",sans-serif;
  --z-modal: 1000;
  --z-overlay: 100;
  --z-header: 20;
  --container-padding: 15px;
  --container-size: 1100px;
  --container-width: calc(var(--container-size) + (var(--container-padding)*2));
  --animation-normal: all 0.2s ease-in;
  --path--image: './images/';
  --path--image-icon: var(--path--image)'icon/';
}

body {
  font-family: "Noto Sans JP","Hiragino Sans","Meiryo","Hiragino Kaku Gothic ProN","Arial",sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-size: var(--base-font-size);
  font-weight: 400;
  font-weight: var(--base-font-weight);
  line-height: 1.625;
  line-height: var(--base-line-height);
  scroll-behavior: smooth;
  position: relative;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

dl, dt, dd {
  margin: 0;
}

p {
  letter-spacing: 1.5px;
  font-weight: normal;
  line-height: 1.5;
}

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

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  word-break: break-all;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

strong {
  font-weight: 700;
  font-weight: var(--base-font-bold);
}

figure {
  margin: 0;
}

/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Breaks words to prevent overflow in all browsers (opinionated).
  * 4. Use a 4-space tab width in all browsers (opinionated).
  * 5. Remove the grey highlight on links in iOS (opinionated).
  * 6. Prevent adjustments of font size after orientation changes in iOS.
  */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%; /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
:where(body) {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, and Safari.
  */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
  * 1. Correct the inheritance of border color in Firefox.
  * 2. Add the correct box sizing in Firefox.
  */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
  * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
  */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  * 3. Prevent overflow of the container in all browsers (opinionated).
  */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Add the correct text decoration in Safari.
  */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
:where(b, strong) {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
:where(small) {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
:where(iframe) {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
  * ========================================================================== */
/**
  * 1. Collapse border spacing in all browsers (opinionated).
  * 2. Correct table border color in Chrome, Edge, and Safari.
  * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
  */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
:where(button, input, select) {
  margin: 0;
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
  * Change the inconsistent appearance in all browsers (opinionated).
  */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
  * Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
:where(progress) {
  vertical-align: baseline;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 3. Change the resize direction in all browsers (opinionated).
  */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct styles in Safari.
  */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
  * Add the correct display in Safari.
  */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/*
実装例
@include responsive(md) {
  font-size: 14px;
}
*/
/*
実装例
@include icon(30px,30px,mainbg.jpg)
*/
/*
実装例
@include hover{
  内容
}
*/
.l-footer {
  background-color: #3E2214;
  background-color: var(--text-color);
  width: 100%;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #F6F7F0;
  background-color: var(--base-color);
  padding-bottom: 10px;
}
.l-header.is-active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}
.l-header.is-menu-open {
  opacity: 1;
}

.l-main {
  padding-top: 88px;
}
.l-main__content {
  max-width: 1120px;
  width: 100%;
}
.l-main__low {
  margin-top: 67px;
}
@media screen and (min-width: 768px) {
  .l-main__low {
    margin-top: 98px;
  }
}
.l-main__lowcontent {
  max-width: 1120px;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1200px) {
  .l-main__lowcontent {
    padding: 0;
  }
}
.l-main__404content {
  max-width: 1120px;
  width: 100%;
  margin: 100px auto;
  padding: 100px 15px 0 15px;
}

html {
  scroll-padding-top: 66px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 98px;
  }
}

.c-arrow__base, .c-arrow__base--right, .c-arrow__base--right--orange {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  vertical-align: middle;
}
.c-arrow__base::before, .c-arrow__base--right::before, .c-arrow__base--right--orange::before, .c-arrow__base::after, .c-arrow__base--right::after, .c-arrow__base--right--orange::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-arrow__base--right::before, .c-arrow__base--right--orange::before {
  right: -10px;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
}
.c-arrow__base--right--orange::before {
  border-top: 2px solid #F57F00;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid #F57F00;
  border-right: 2px solid var(--main-color);
}

.c-band, .c-band--pink, .c-band--green, .c-band--blue, .c-band--orange {
  aspect-ratio: 75/32;
  width: 100%;
  position: relative;
}
.c-band::before, .c-band--pink::before, .c-band--green::before, .c-band--blue::before, .c-band--orange::before, .c-band::after, .c-band--pink::after, .c-band--green::after, .c-band--blue::after, .c-band--orange::after {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-band, .c-band--pink, .c-band--green, .c-band--blue, .c-band--orange {
    aspect-ratio: 36/5;
  }
  .c-band::before, .c-band--pink::before, .c-band--green::before, .c-band--blue::before, .c-band--orange::before, .c-band::after, .c-band--pink::after, .c-band--green::after, .c-band--blue::after, .c-band--orange::after {
    content: "";
    background: none;
  }
}
.c-band--orange {
  background: radial-gradient(400% 50% at 50% 50%, rgba(252, 215, 176, 0.7) 0%, rgba(252, 215, 176, 0.4) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-band--orange {
    background: radial-gradient(400% 50% at 50% 50%, rgba(252, 215, 176, 0.7) 0%, rgba(252, 215, 176, 0.4) 100%), url("../images/common/bg_title-pc-orange.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
  }
}
.c-band--orange::before {
  content: "";
  background: url(../images/common/bg_title-sp-sea-orange.png) no-repeat;
  background-size: contain;
  background-position: top left;
}
@media screen and (min-width: 768px) {
  .c-band--orange::before {
    background: none;
  }
}
.c-band--orange::after {
  content: "";
  background: url(../images/common/bg_title-sp-mt-orange.png) no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media screen and (min-width: 768px) {
  .c-band--orange::after {
    background: none;
  }
}
.c-band--blue {
  background: radial-gradient(400% 50% at 50% 50%, rgba(176, 196, 220, 0.7) 0%, rgba(176, 196, 220, 0.4) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-band--blue {
    background: radial-gradient(400% 50% at 50% 50%, rgba(176, 196, 220, 0.7) 0%, rgba(176, 196, 220, 0.4) 100%), url("../images/common/bg_title-pc-blue.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
  }
}
.c-band--blue::before {
  content: "";
  background: url(../images/common/bg_title-sp-sea-blue.png) no-repeat;
  background-size: contain;
  background-position: top left;
}
@media screen and (min-width: 768px) {
  .c-band--blue::before {
    background: none;
  }
}
.c-band--blue::after {
  content: "";
  background: url(../images/common/bg_title-sp-mt-blue.png) no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media screen and (min-width: 768px) {
  .c-band--blue::after {
    background: none;
  }
}
.c-band--green {
  background: radial-gradient(400% 50% at 50% 50%, rgba(213, 232, 181, 0.8) 0%, rgba(213, 232, 181, 0.4) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-band--green {
    background: radial-gradient(400% 50% at 50% 50%, rgba(213, 232, 181, 0.8) 0%, rgba(213, 232, 181, 0.4) 100%), url("../images/common/bg_title-pc-green.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
  }
}
.c-band--green::before {
  content: "";
  background: url(../images/common/bg_title-sp-sea-green.png) no-repeat;
  background-size: contain;
  background-position: top left;
}
@media screen and (min-width: 768px) {
  .c-band--green::before {
    background: none;
  }
}
.c-band--green::after {
  content: "";
  background: url(../images/common/bg_title-sp-mt-green.png) no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media screen and (min-width: 768px) {
  .c-band--green::after {
    background: none;
  }
}
.c-band--pink {
  background: radial-gradient(400% 50% at 50% 50%, rgba(245, 176, 186, 0.6) 0%, rgba(245, 176, 186, 0.3) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .c-band--pink {
    background: radial-gradient(400% 50% at 50% 50%, rgba(245, 176, 186, 0.6) 0%, rgba(245, 176, 186, 0.3) 100%), url("../images/common/bg_title-pc-pink.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
  }
}
.c-band--pink::before {
  content: "";
  background: url(../images/common/bg_title-sp-sea-pink.png) no-repeat;
  background-size: contain;
  background-position: top left;
}
@media screen and (min-width: 768px) {
  .c-band--pink::before {
    background: none;
  }
}
.c-band--pink::after {
  content: "";
  background: url(../images/common/bg_title-sp-mt-pink.png) no-repeat;
  background-size: contain;
  background-position: bottom right;
}
@media screen and (min-width: 768px) {
  .c-band--pink::after {
    background: none;
  }
}

.c-box--whiteshadow {
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(62, 34, 20, 0.06);
  border-radius: 10px;
}

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  position: absolute;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb {
    padding-top: 20px;
  }
}
.c-breadcrumb > li {
  border-right: 1px solid #3E2214;
  border-right: 1px solid var(--text-color);
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  line-height: 100%; /* 16px */
  letter-spacing: 0.56px;
  padding-right: 8px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb > li {
    font-size: 1rem;
    letter-spacing: 0.64px;
  }
}
.c-breadcrumb > li:last-of-type {
  border-right: none;
  padding-right: 0;
}
.c-breadcrumb > li:first-of-type::before {
  content: "";
  background: url(../images/common/icon_home.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 16px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.c-breadcrumb > li > a {
  text-decoration: underline;
  color: #3E2214;
  color: var(--text-color);
}
.c-breadcrumb--noband {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb--noband {
    padding-top: 20px;
  }
}
.c-breadcrumb--noband > li {
  border-right: 1px solid #3E2214;
  border-right: 1px solid var(--text-color);
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  line-height: 100%; /* 16px */
  letter-spacing: 0.56px;
  padding-right: 8px;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb--noband > li {
    font-size: 1rem;
    letter-spacing: 0.64px;
  }
}
.c-breadcrumb--noband > li:last-of-type {
  border-right: none;
  padding-right: 0;
}
.c-breadcrumb--noband > li:first-of-type::before {
  content: "";
  background: url(../images/common/icon_home.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 16px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.c-breadcrumb--noband > li > a {
  text-decoration: underline;
  color: #3E2214;
  color: var(--text-color);
}

.c-button {
  --padding: 10px 20px;
  display: inline-block;
  padding: var(--padding);
}
.c-button--basic > a {
  border-radius: 10px;
  border: 2px solid #FAC48A;
  background: #FEF2E6;
  color: #3E2214;
  color: var(--text-color);
  display: block;
  text-align: center;
  margin: auto;
  position: relative;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-button--basic > a:hover {
    transition: all 0.3s;
    background: #fff;
  }
}
.c-button--basic > a > span {
  display: block;
  margin: auto;
  width: calc(100% - 80px);
}
.c-button--basic > a::after {
  content: "";
  background: url("../images/common/ico_rightarrow.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: block;
  background-size: contain;
}
.c-button--leftarrow > a {
  border-radius: 10px;
  border: 2px solid #FAC48A;
  background: #FEF2E6;
  color: #3E2214;
  color: var(--text-color);
  display: block;
  text-align: center;
  margin: auto;
  position: relative;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-button--leftarrow > a:hover {
    transition: all 0.3s;
    background: #fff;
  }
}
.c-button--leftarrow > a > span {
  display: block;
  margin: auto;
  width: calc(100% - 100px);
  font-weight: 700;
  font-weight: var(--base-font-bold);
}
.c-button--leftarrow > a::before {
  content: "";
  background: url("../images/common/ico_rightarrow.svg") no-repeat;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
  width: 24px;
  height: 24px;
  display: block;
  background-size: contain;
}
.c-button--white > a {
  border-radius: 10px;
  background: #fff;
  color: #3E2214;
  color: var(--text-color);
  display: block;
  margin: auto;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}
.c-button--white > a > span {
  display: block;
  margin: auto;
  width: calc(100% - 85px);
}
.c-button--white > a::after {
  content: "";
  background: url("../images/common/ico_rightarrow.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: block;
  background-size: contain;
}
@media (any-hover: hover) {
  .c-button--white > a:hover {
    background: #FEF2E6;
    border: 2px solid #FAC48A;
    transition: all 0.3s ease;
  }
}
.c-button--base__link {
  border: 2px solid #FAC48A;
  background-color: #FEF2E6;
  border-radius: 10px;
  transition: all 0.3s;
  color: #3E2214;
  color: var(--text-color);
}
@media (any-hover: hover) {
  .c-button--base__link:hover {
    transition: all 0.3s;
    background-color: #FCD7B0;
  }
}

.c-description__ttl {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.c-description__ttl::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #F79933;
  border-radius: 2px;
  flex-shrink: 0;
}
.c-description__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 21px */
  letter-spacing: 0.56px;
}

.c-faq__question {
  width: 100%;
  background-color: #FCD7B0;
  border-radius: 10px;
}
.c-faq__question__icon {
  background-color: #F57F00;
  background-color: var(--main-color);
  border-radius: 6px;
}
.c-faq__question__wrapper {
  width: calc(100% - 65px);
  display: block;
}
@media screen and (min-width: 768px) {
  .c-faq__question__wrapper {
    width: calc(100% - 80px);
  }
}
.c-faq__answer__icon {
  border: 1.2px solid #F79933;
  border-radius: 6px;
}

.c-grid, .c-grid__pccol2spcol1 {
  display: grid;
}
.c-grid__pccol2spcol1 {
  grid-template-columns: 1fr;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .c-grid__pccol2spcol1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-heading--lv2 {
  font-size: 1.5rem;
  color: #3E2214;
  color: var(--text-color);
  font-weight: bold;
  line-height: 150%; /* 60px */
  letter-spacing: 1.2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-heading--lv2 {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}
.c-heading--lv3 {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: 1.28px;
}
@media screen and (min-width: 768px) {
  .c-heading--lv3 {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
}
.c-heading__deco {
  width: 40px;
}
@media screen and (min-width: 768px) {
  .c-heading__deco {
    width: 80px;
  }
}
.c-heading__lowlv2 {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 42px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .c-heading__lowlv2 {
    font-size: 1.75rem;
    letter-spacing: 1.12px;
  }
}
.c-heading__lowlv3 {
  color: #3E2214;
  color: var(--text-color);
  padding-left: 30px;
  position: relative;
}
.c-heading__lowlv3::before {
  background-color: #F57F00;
  background-color: var(--main-color);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0.75em;
  transform: translateY(-50%);
  width: 24px;
}

.c-icon__bud--blue {
  filter: brightness(0) saturate(100%) invert(80%) sepia(8%) saturate(728%) hue-rotate(173deg) brightness(98%) contrast(87%);
}
.c-icon__bud--pink {
  filter: brightness(0) saturate(100%) invert(88%) sepia(38%) saturate(3888%) hue-rotate(297deg) brightness(95%) contrast(98%);
}
.c-icon__bud--green {
  filter: brightness(0) saturate(100%) invert(87%) sepia(12%) saturate(1582%) hue-rotate(32deg) brightness(87%) contrast(93%);
}
.c-icon__bud--dgreen {
  filter: brightness(0) saturate(100%) invert(53%) sepia(46%) saturate(441%) hue-rotate(41deg) brightness(91%) contrast(90%);
}
.c-icon__bud--pink {
  filter: brightness(0) saturate(100%) invert(46%) sepia(20%) saturate(3113%) hue-rotate(314deg) brightness(96%) contrast(92%);
}
.c-icon__rightarrow {
  background-color: #3E2214;
  background-color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 50%;
}
.c-icon__rightarrow::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-icon__rightarrow.--24 {
  min-width: 24px;
  height: 24px;
}
.c-icon__rightarrow.--24::after {
  left: 7px;
  width: 8px;
  height: 8px;
}
.c-icon__rightarrowbk {
  background-color: #000;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.c-icon__rightarrowbk::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.c-icon__rightarrowbk.--24 {
  min-width: 24px;
  height: 24px;
}
.c-icon__rightarrowbk.--24::after {
  left: 7px;
  width: 8px;
  height: 8px;
}
.c-icon__outer {
  width: 14px;
  height: 14px;
  margin-bottom: 2px;
}
.c-icon__imglink {
  width: clamp(34px, 4.8vw, 54px);
  height: clamp(34px, 4.8vw, 54px);
}

.c-lead__ttl {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
  margin-bottom: 24px;
}
.c-lead__block > p {
  color: #3E2214;
  color: var(--text-color);
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
  margin-bottom: 1rem;
}
.c-lead__block > p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .c-lead__block > p {
    text-align: center;
  }
}

.c-link__orangebase {
  color: #F57F00;
  color: var(--main-color);
  text-decoration: underline;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-link__orangebase:hover {
    transition: all 0.3s;
    text-decoration: none;
  }
}
.c-link__imgwhitebgtext {
  background-color: #fff;
  display: table;
  color: #3E2214;
  color: var(--text-color);
  opacity: 0.95;
}
.c-link__text {
  color: #3E2214;
  color: var(--text-color);
  text-decoration: underline;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .c-link__text:hover {
    transition: all 0.3s;
    text-decoration: none;
  }
}

.c-list--num > li {
  margin-bottom: 0.5em;
  margin-left: 1rem;
  list-style-type: decimal;
}
.c-list--annotation li {
  padding-left: 1em;
}
.c-list--annotation li::before {
  content: "※";
  margin-left: -1em;
}

.c-marker {
  background-image: linear-gradient(#F57F00, #F57F00);
  background-image: linear-gradient(var(--main-color), var(--main-color));
  background-repeat: no-repeat;
  background-size: 0% 100%; /* 最初は幅0% */
  transition: background-size 0.8s ease-out, color 0.2s linear 0.6s;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  color: #3E2214;
  color: var(--text-color);
  display: inline;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.c-marker.is-active {
  background-size: 100% 100%; /* 幅を100%にする */
  color: #fff;
  padding: 0 5px;
}

.c-pagetop {
  width: 100px;
  position: fixed;
  z-index: 90;
  bottom: 20px;
  right: 20px;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-pagetop:hover {
    transition: all 0.3s ease;
    opacity: 0.8;
  }
}
.c-pagetop__img {
  width: 50px;
  margin: auto;
}
.c-pagetop__body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F57F00;
  background-color: var(--main-color);
  border-radius: 5px;
  box-shadow: 2px 2px 0 0 #DF7400;
  padding: 6px 8px;
  gap: 4px;
}
.c-pagetop__body__text {
  color: #FFF;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 114%; /* 17.1px */
  letter-spacing: 0.6px;
}
.c-pagetop__body__icon {
  width: 28px;
  height: 28px;
}

.c-table--base th, .c-table--base td {
  border: 1px solid #FAC48A;
}
.c-table--base td {
  background-color: #fff;
}
.c-table--head--orange {
  background-color: #FAC48A;
}
.c-table--head--thinorange {
  background-color: #FCD7B0;
}
.c-table--head--darkorange {
  background-color: #F8A954;
}

.c-tag--orangeib > li {
  background-color: #F79933;
  color: #fff;
}

.c-toggle {
  display: block;
  width: 50px;
  height: 50px;
  z-index: 1001;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #F57F00;
  border-top: 1px solid var(--main-color);
  border-left: 1px solid #F57F00;
  border-left: 1px solid var(--main-color);
  border-right: 3px solid #F57F00;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid #F57F00;
  border-bottom: 3px solid var(--main-color);
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-toggle {
    display: none;
  }
}
.c-toggle__body {
  cursor: pointer;
  display: flex;
  width: 35px;
  height: 50px;
  justify-content: center;
  position: relative;
  z-index: 9999;
}
.c-toggle__body span {
  border-bottom: 3px solid #F57F00;
  border-bottom: 3px solid var(--main-color);
  border-radius: 5px;
  display: block;
  position: absolute;
  transition: 0.2s ease;
  width: 35px;
}
.c-toggle__body span:first-of-type {
  top: 10px;
}
.c-toggle__body span:last-of-type {
  top: 20px;
}
.c-toggle__body > p {
  position: absolute;
  bottom: 5px;
  font-size: 0.9rem;
  color: #F57F00;
  color: var(--main-color);
  font-weight: 700;
  letter-spacing: 0.1px;
}
.c-toggle__body.active > span:first-of-type {
  top: 15px;
  transform: rotate(30deg);
}
.c-toggle__body.active > span:last-of-type {
  top: 15px;
  transform: rotate(-30deg);
}

.p-about {
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin: 64px auto 128px;
  }
}
.p-about__content {
  display: block;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .p-about__content {
    display: flex;
    align-items: flex-start; /* これがないと左側が親と同じ高さまで伸びてしまい動きません */
  }
}
.p-about__content__ttl {
  position: static;
  width: 100%; /* 任意の横幅 */
}
@media screen and (min-width: 768px) {
  .p-about__content__ttl {
    position: sticky;
    top: 110px;
    width: 370px;
  }
}
.p-about__content__ttl__deco {
  width: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__content__ttl__deco {
    width: 80px;
  }
}
.p-about__content__ttl__body {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 42px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-about__content__ttl__body {
    font-size: 1.75rem;
    letter-spacing: 1.12px;
  }
}
.p-about__content__ttl__body.lsmin {
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-about__content__ttl__body.lsmin {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
  }
}
.p-about__content__ttl__img {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-about__content__ttl__img {
    width: 100%;
  }
}
.p-about__content__subttl {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 36px */
  letter-spacing: 0.96px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.p-about__content__subttl::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 4px;
  background-color: #F57F00;
  background-color: var(--main-color);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-about__content__subttl {
    font-size: 1.5rem;
    letter-spacing: 0.72px;
  }
}
.p-about__content__tableimg {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-about__content__tableimg {
    margin-bottom: 28px;
  }
}
.p-about__content__tabletext {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 30px */
  letter-spacing: 0.64px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-about__content__tabletext {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
  }
}
.p-about__content__main {
  margin: -12% 0 0 0;
}
@media screen and (min-width: 768px) {
  .p-about__content__main {
    margin: 120px 0;
    flex: 1;
  }
}
.p-about__content__main__lead {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__lead {
    font-size: 1.25rem;
    line-height: 100%;
    letter-spacing: 0.72px;
    text-align: left;
  }
}
.p-about__content__main__textblock {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__textblock {
    margin-bottom: 40px;
  }
}
.p-about__content__main__textblock > p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 31.5px */
  letter-spacing: 0.64px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__textblock > p {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
  }
}
.p-about__content__main__declaration {
  width: 100%;
  margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__declaration {
    width: 75%;
    margin: 0 auto 40px;
  }
}
.p-about__content__main__declaration__body {
  padding: 16px;
}
.p-about__content__main__declaration__ttl {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 20px */
  letter-spacing: 0.72px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__declaration__ttl {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-about__content__main__declaration__slogan {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 18px */
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__declaration__slogan {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-about__content__main__declaration__list {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.p-about__content__main__declaration__list > li {
  color: #A3CE5F;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__declaration__list > li {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-about__content__main__annotation {
  color: #3E2214;
  color: var(--text-color);
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-about__content__main__annotation {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
    text-align: left;
  }
}
.p-about__content__block {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-about__content__block {
    margin-bottom: 40px;
  }
}
.p-about__content__img60block {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-about__content__img60block {
    width: 60%;
  }
}
.p-about__content__img75block {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-about__content__img75block {
    width: 75%;
  }
}
.p-about__btnwrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.p-about__btn, .p-about__btn--short {
  max-width: 470px;
  width: 100%;
  font-size: 0.875rem;
  color: #3E2214;
  color: var(--text-color);
  padding: 16px;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 120%; /* 30px */
  letter-spacing: 0.64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__btn, .p-about__btn--short {
    font-size: 1.25rem;
    padding: 16px 24px;
    line-height: 150%; /* 30px */
    letter-spacing: 0.8px;
    text-align: left;
  }
}
.p-about__btn--short {
  max-width: 390px;
}
.p-about__datablock {
  background-color: #FCD7B0;
  max-width: 736px;
  min-height: 360px;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
  border-radius: 150px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  display: block;
}
@media screen and (min-width: 576px) {
  .p-about__datablock {
    display: block;
    padding: 60px 20px;
    border-radius: 225px;
    width: 100%;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-about__datablock {
    display: block;
    padding: 60px 20px;
    border-radius: 300px;
    width: 100%;
    margin: auto;
  }
}
@media screen and (min-width: 992px) {
  .p-about__datablock {
    min-height: 360px;
    border-radius: 170px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 40px 0;
    width: 100%;
    margin: auto;
  }
}
.p-about__datablock__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-about__datablock__item {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .p-about__datablock__item {
    width: 45%;
  }
}
.p-about__datablock__item:first-of-type {
  border-right: none;
  border-bottom: 1px dashed #F57F00;
  border-bottom: 1px dashed var(--main-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .p-about__datablock__item:first-of-type {
    border-right: 1px dashed #F57F00;
    border-right: 1px dashed var(--main-color);
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.p-about__datablock__item__ttlblock {
  margin-bottom: 24px;
}
.p-about__datablock__item__largetext {
  font-size: 2rem;
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-weight: 900;
  line-height: 100%; /* 32px */
  letter-spacing: 4.8px;
  text-shadow: 1px 0 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff;
}
@media screen and (min-width: 992px) {
  .p-about__datablock__item__largetext {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__datablock__item__largetext {
    font-size: 2rem;
  }
}
.p-about__datablock__item__largetext > span {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  line-height: 100%; /* 48px */
  letter-spacing: 1.44px;
}
@media screen and (min-width: 992px) {
  .p-about__datablock__item__largetext > span {
    font-size: 2.75rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__datablock__item__largetext > span {
    font-size: 3rem;
  }
}
.p-about__datablock__item__text {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}
@media screen and (min-width: 992px) {
  .p-about__datablock__item__text {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-about__datablock__item__text {
    font-size: 1rem;
  }
}

.p-anchor__base {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 10px;
}
@media screen and (min-width: 768px) {
  .p-anchor__base {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 32px;
  }
}
.p-anchor__base__item {
  border-bottom: 1px solid #F57F00;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 10px;
}
.p-anchor__base__item a {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .p-anchor__base__item a {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
  }
}
.p-anchor__base__item a::before {
  content: "";
  background: url(../images/common/icon_anchrarrow.svg) no-repeat center center;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.p-band {
  max-width: 1120px;
  margin: auto;
  padding: 0 15px;
  position: relative;
  height: 100%;
  width: 100%;
}
.p-band__ttlblock {
  margin-top: 0;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-band__ttlblock {
    margin-top: 24px;
  }
}
.p-band__ttl__sub, .p-band__ttl__sub--pink, .p-band__ttl__sub--dgreen, .p-band__ttl__sub--blue, .p-band__ttl__sub--orange {
  font-size: 1rem;
  font-weight: 900;
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
  text-align: center;
  margin-bottom: 8px;
}
.p-band__ttl__sub--orange {
  color: #F57F00;
  color: var(--main-color);
}
.p-band__ttl__sub--blue {
  color: #3368A5;
}
.p-band__ttl__sub--dgreen {
  color: #749243;
}
.p-band__ttl__sub--pink {
  color: #EA5469;
}
@media screen and (min-width: 768px) {
  .p-band__ttl__sub, .p-band__ttl__sub--pink, .p-band__ttl__sub--dgreen, .p-band__ttl__sub--blue, .p-band__ttl__sub--orange {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
    margin-bottom: 16px;
  }
}
.p-band__ttl__main {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 120%; /* 33.6px */
  letter-spacing: 1.12px;
}
@media screen and (min-width: 768px) {
  .p-band__ttl__main {
    font-size: 2.5rem;
    letter-spacing: 1.2px;
  }
}
.p-band__icon {
  width: 21px;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .p-band__icon {
    width: 25px;
  }
}

.p-bg__main {
  background-color: #F6F7F0;
  background-color: var(--base-color);
}

.p-business {
  margin: 64px auto 128px;
}
.p-business__lead {
  margin-bottom: 64px;
}
.p-business__lead__main {
  margin-bottom: 24px;
}
.p-business__lead__main__text {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-business__lead__main__text {
    font-size: 1.25rem;
    line-height: 175%;
    letter-spacing: 0.8px;
  }
}
.p-business__lead__sub {
  margin-bottom: 1rem;
}
.p-business__lead__sub:last-of-type {
  margin-bottom: 0;
}
.p-business__lead__sub__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-business__lead__sub__text {
    text-align: center;
  }
}
.p-business__content {
  display: block;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .p-business__content {
    display: flex;
    align-items: flex-start; /* これがないと左側が親と同じ高さまで伸びてしまい動きません */
    gap: 32px;
  }
}
.p-business__content__ttl {
  position: static;
  width: 100%; /* 任意の横幅 */
}
@media screen and (min-width: 768px) {
  .p-business__content__ttl {
    position: sticky;
    top: 110px;
    width: 40%;
  }
}
.p-business__content__ttl__img {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-business__content__ttl__img {
    margin-top: 30px;
  }
}
.p-business__content__main {
  margin: 40px auto;
}
@media screen and (min-width: 768px) {
  .p-business__content__main {
    margin: 120px 0;
    flex: 1;
    width: calc(60% - 32px);
  }
}
.p-business__content__item {
  margin-bottom: 40px;
}
.p-business__content__item__ttlwrap, .p-business__content__item__ttlwrap--blue, .p-business__content__item__ttlwrap--pink, .p-business__content__item__ttlwrap--orange {
  position: relative;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-business__content__item__ttlwrap, .p-business__content__item__ttlwrap--blue, .p-business__content__item__ttlwrap--pink, .p-business__content__item__ttlwrap--orange {
    margin-bottom: 24px;
  }
}
.p-business__content__item__ttlwrap--orange {
  background-color: #FEF2E6;
  border-bottom: 2px dashed #F57F00;
  border-bottom: 2px dashed var(--main-color);
}
.p-business__content__item__ttlwrap--pink {
  background-color: #FCE6E9;
  border-bottom: 2px dashed #EA5469;
}
.p-business__content__item__ttlwrap--blue {
  background-color: #E6ECF4;
  border-bottom: 2px dashed #5480B3;
}
.p-business__content__item__ttl, .p-business__content__item__ttl--03 {
  padding: 8px 16px;
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.125rem;
  width: calc(100% - 115px);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-business__content__item__ttl, .p-business__content__item__ttl--03 {
    padding: 24px 16px;
    width: calc(100% - 100px);
    font-size: 1.125rem;
    letter-spacing: 0.8px;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .p-business__content__item__ttl, .p-business__content__item__ttl--03 {
    width: calc(100% - 120px);
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-business__content__item__ttl--03 {
  width: calc(100% - 90px);
}
.p-business__content__item__ttl__icon {
  width: 85px;
  position: absolute;
  right: 20px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-business__content__item__ttl__icon {
    width: 70px;
    position: absolute;
    right: 20px;
    bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-business__content__item__ttl__icon {
    width: 85px;
    position: absolute;
    right: 25px;
    bottom: 0;
  }
}
.p-business__content__item__ttl__icon--03 {
  width: 70px;
  position: absolute;
  right: 20px;
  bottom: 0;
}
.p-business__content__textblock {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-business__content__textblock {
    margin-bottom: 24px;
  }
}
.p-business__content__textblock__ttl {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-business__content__textblock__ttl {
    margin-bottom: 24px;
  }
}
.p-business__content__textblock__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  margin-bottom: 1rem;
}
.p-business__content__textblock__text:last-of-type {
  margin-bottom: 0;
}
.p-business__content__project {
  max-width: 450px;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-business__content__project {
    margin: 0;
  }
}
.p-business__content__project__ttl {
  margin-bottom: 16px;
}
.p-business__normalcontent__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-business__normalcontent__ttl {
    margin-bottom: 32px;
  }
}
.p-business__normalcontent__lead {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.72px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-business__normalcontent__lead {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    text-align: left;
  }
}
.p-business__normalcontent__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-business__normalcontent__main {
    flex-direction: row;
    gap: 32px;
  }
}
.p-business__normalcontent__main__img {
  max-width: 450px;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-business__normalcontent__main__img {
    margin: unset;
  }
}
.p-business__normalcontent__main__textblock {
  width: 100%;
}
.p-business__normalcontent__main__textblock__img {
  max-width: 450px;
  width: 100%;
  margin-top: 24px;
}
.p-business__normalcontent__main__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
}

.p-button, .p-button--size324, .p-button--size412, .p-button--basic350, .p-button--basic {
  display: flex;
  justify-content: center;
}
.p-button--basic {
  max-width: 350px;
  width: 100%;
  min-height: 62px;
}
.p-button--basic > a {
  padding: 16px;
}
.p-button--basic350 {
  max-width: unset;
  width: 100%;
  min-height: 62px;
}
@media screen and (min-width: 768px) {
  .p-button--basic350 {
    max-width: 350px;
  }
}
.p-button--basic350 > a {
  padding: 16px;
}
.p-button--size412 {
  max-width: unset;
  width: 100%;
  min-height: 62px;
}
.p-button--size412 > a {
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-button--size412 {
    max-width: 412px;
  }
}
.p-button--size324 {
  max-width: unset;
  width: 100%;
  min-height: 62px;
}
.p-button--size324 > a {
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-button--size324 {
    max-width: 324px;
  }
}
.p-button--icon {
  display: inline-block;
  position: relative;
}
.p-button--base {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.p-button__inner {
  display: inline-block;
  width: calc(100% - 42px);
}

.p-card__base {
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-card__base {
    padding: 32px;
  }
}
.p-card__base__ttl {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-card__base__ttl {
    text-align: left;
  }
}
.p-card__base__text > p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}

.p-crosstalk {
  margin: 16px auto 64px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk {
    margin: 64px auto 120px;
  }
}
.p-crosstalk__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
.p-crosstalk__main__img {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-crosstalk__main__img {
    width: 100%;
    margin: 0 auto;
  }
}
.p-crosstalk__main__img__textblock {
  position: absolute;
  bottom: 12px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__main__img__textblock {
    bottom: 24px;
    left: 24px;
  }
}
.p-crosstalk__main__img__maintext {
  color: #3E2214;
  color: var(--text-color);
  background-color: #fff;
  font-size: clamp(1rem, 3.57vw, 2.5rem);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.64px;
  margin-bottom: 6px;
  padding: 8px 6px;
  display: table;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__main__img__maintext {
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    padding: 24px 16px;
  }
}
.p-crosstalk__leadblock {
  max-width: 945px;
  margin: 24px auto 88px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__leadblock {
    margin: 40px auto 105px;
  }
}
.p-crosstalk__introduction {
  max-width: 928px;
  margin: 0 auto 60px;
}
.p-crosstalk__introduction__main {
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 15px;
  margin: 24px auto 0;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__introduction__main {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}
.p-crosstalk__introduction__main__img {
  margin-bottom: 10px;
}
.p-crosstalk__introduction__main__name {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
  margin-bottom: 10px;
}
.p-crosstalk__introduction__main__business {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
}
.p-crosstalk__interview {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__main {
    max-width: 1056px;
    margin: 0 auto;
  }
}
.p-crosstalk__interview__ttlblock {
  margin-bottom: 32px;
}
.p-crosstalk__interview__item, .p-crosstalk__interview__item--rev {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item, .p-crosstalk__interview__item--rev {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item--rev {
    flex-direction: row-reverse;
  }
}
.p-crosstalk__interview__item__textwrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.p-crosstalk__interview__item__imgblock, .p-crosstalk__interview__item__imgblock--rev {
  max-width: unset;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__imgblock, .p-crosstalk__interview__item__imgblock--rev {
    flex-direction: column;
    align-items: flex-start;
    max-width: 160px;
    width: 100%;
  }
}
.p-crosstalk__interview__item__imgblock--rev {
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__imgblock--rev {
    flex-direction: column;
    max-width: 160px;
    width: 100%;
  }
}
.p-crosstalk__interview__item__img {
  width: 30%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__img {
    width: 100%;
  }
}
.p-crosstalk__interview__item__img__caption {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__img__caption {
    line-height: 150%;
  }
}
.p-crosstalk__interview__item__bubble, .p-crosstalk__interview__item__bubble--right, .p-crosstalk__interview__item__bubble--right--pink, .p-crosstalk__interview__item__bubble--right--blue, .p-crosstalk__interview__item__bubble--right--green, .p-crosstalk__interview__item__bubble--right--orange, .p-crosstalk__interview__item__bubble--left, .p-crosstalk__interview__item__bubble--left--pink, .p-crosstalk__interview__item__bubble--left--blue, .p-crosstalk__interview__item__bubble--left--green, .p-crosstalk__interview__item__bubble--left--orange {
  position: relative;
  display: inline-block;
  padding: 20px 15px;
  border-radius: 10px;
  margin-top: 0;
  max-width: 100%;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble, .p-crosstalk__interview__item__bubble--right, .p-crosstalk__interview__item__bubble--right--pink, .p-crosstalk__interview__item__bubble--right--blue, .p-crosstalk__interview__item__bubble--right--green, .p-crosstalk__interview__item__bubble--right--orange, .p-crosstalk__interview__item__bubble--left, .p-crosstalk__interview__item__bubble--left--pink, .p-crosstalk__interview__item__bubble--left--blue, .p-crosstalk__interview__item__bubble--left--green, .p-crosstalk__interview__item__bubble--left--orange {
    padding: 16px 24px;
    margin-top: 10px;
  }
}
.p-crosstalk__interview__item__bubble::before, .p-crosstalk__interview__item__bubble--right::before, .p-crosstalk__interview__item__bubble--right--pink::before, .p-crosstalk__interview__item__bubble--right--blue::before, .p-crosstalk__interview__item__bubble--right--green::before, .p-crosstalk__interview__item__bubble--right--orange::before, .p-crosstalk__interview__item__bubble--left::before, .p-crosstalk__interview__item__bubble--left--pink::before, .p-crosstalk__interview__item__bubble--left--blue::before, .p-crosstalk__interview__item__bubble--left--green::before, .p-crosstalk__interview__item__bubble--left--orange::before, .p-crosstalk__interview__item__bubble::after, .p-crosstalk__interview__item__bubble--right::after, .p-crosstalk__interview__item__bubble--right--pink::after, .p-crosstalk__interview__item__bubble--right--blue::after, .p-crosstalk__interview__item__bubble--right--green::after, .p-crosstalk__interview__item__bubble--right--orange::after, .p-crosstalk__interview__item__bubble--left::after, .p-crosstalk__interview__item__bubble--left--pink::after, .p-crosstalk__interview__item__bubble--left--blue::after, .p-crosstalk__interview__item__bubble--left--green::after, .p-crosstalk__interview__item__bubble--left--orange::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
}
.p-crosstalk__interview__item__bubble--left::before, .p-crosstalk__interview__item__bubble--left--pink::before, .p-crosstalk__interview__item__bubble--left--blue::before, .p-crosstalk__interview__item__bubble--left--green::before, .p-crosstalk__interview__item__bubble--left--orange::before {
  left: 7.5%;
  top: -23px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left::before, .p-crosstalk__interview__item__bubble--left--pink::before, .p-crosstalk__interview__item__bubble--left--blue::before, .p-crosstalk__interview__item__bubble--left--green::before, .p-crosstalk__interview__item__bubble--left--orange::before {
    left: -23px;
    top: 25%;
  }
}
.p-crosstalk__interview__item__bubble--left::after, .p-crosstalk__interview__item__bubble--left--pink::after, .p-crosstalk__interview__item__bubble--left--blue::after, .p-crosstalk__interview__item__bubble--left--green::after, .p-crosstalk__interview__item__bubble--left--orange::after {
  left: 7.5%;
  top: -17px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left::after, .p-crosstalk__interview__item__bubble--left--pink::after, .p-crosstalk__interview__item__bubble--left--blue::after, .p-crosstalk__interview__item__bubble--left--green::after, .p-crosstalk__interview__item__bubble--left--orange::after {
    left: -17px;
    top: 25%;
  }
}
.p-crosstalk__interview__item__bubble--left--orange {
  background-color: #FEF2E6;
  border: 3px solid #F79933;
}
.p-crosstalk__interview__item__bubble--left--orange::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 21px solid #F79933;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--orange::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 21px solid #F79933;
    border-left: none;
  }
}
.p-crosstalk__interview__item__bubble--left--orange::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 21px solid #FEF2E6;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--orange::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 21px solid #FEF2E6;
    border-left: none;
  }
}
.p-crosstalk__interview__item__bubble--left--green {
  background-color: #F6FAEF;
  border: 3px solid #A3CE5F;
}
.p-crosstalk__interview__item__bubble--left--green::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #A3CE5F;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--green::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 21px solid #A3CE5F;
  }
}
.p-crosstalk__interview__item__bubble--left--green::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #F6FAEF;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--green::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 21px solid #F6FAEF;
  }
}
.p-crosstalk__interview__item__bubble--left--blue {
  background-color: #E6ECF4;
  border: 3px solid #5480B3;
}
.p-crosstalk__interview__item__bubble--left--blue::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #5480B3;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--blue::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 21px solid #5480B3;
  }
}
.p-crosstalk__interview__item__bubble--left--blue::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #E6ECF4;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--blue::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 21px solid #E6ECF4;
  }
}
.p-crosstalk__interview__item__bubble--left--pink {
  background-color: #FCE6E9;
  border: 3px solid #EA5469;
}
.p-crosstalk__interview__item__bubble--left--pink::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #EA5469;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--pink::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 21px solid #EA5469;
  }
}
.p-crosstalk__interview__item__bubble--left--pink::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #FCE6E9;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--left--pink::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: none;
    border-right: 21px solid #FCE6E9;
  }
}
.p-crosstalk__interview__item__bubble--right::before, .p-crosstalk__interview__item__bubble--right--pink::before, .p-crosstalk__interview__item__bubble--right--blue::before, .p-crosstalk__interview__item__bubble--right--green::before, .p-crosstalk__interview__item__bubble--right--orange::before {
  right: 7.5%;
  top: -23px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right::before, .p-crosstalk__interview__item__bubble--right--pink::before, .p-crosstalk__interview__item__bubble--right--blue::before, .p-crosstalk__interview__item__bubble--right--green::before, .p-crosstalk__interview__item__bubble--right--orange::before {
    right: -23px;
    top: 25%;
  }
}
.p-crosstalk__interview__item__bubble--right::after, .p-crosstalk__interview__item__bubble--right--pink::after, .p-crosstalk__interview__item__bubble--right--blue::after, .p-crosstalk__interview__item__bubble--right--green::after, .p-crosstalk__interview__item__bubble--right--orange::after {
  right: 7.5%;
  top: -17px;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right::after, .p-crosstalk__interview__item__bubble--right--pink::after, .p-crosstalk__interview__item__bubble--right--blue::after, .p-crosstalk__interview__item__bubble--right--green::after, .p-crosstalk__interview__item__bubble--right--orange::after {
    right: -17px;
    top: 25%;
  }
}
.p-crosstalk__interview__item__bubble--right--orange {
  background-color: #FEF2E6;
  border: 3px solid #F79933;
}
.p-crosstalk__interview__item__bubble--right--orange::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #F79933;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--orange::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #F79933;
  }
}
.p-crosstalk__interview__item__bubble--right--orange::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #FEF2E6;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--orange::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #FEF2E6;
  }
}
.p-crosstalk__interview__item__bubble--right--green {
  background-color: #F6FAEF;
  border: 3px solid #A3CE5F;
}
.p-crosstalk__interview__item__bubble--right--green::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #A3CE5F;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--green::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #A3CE5F;
  }
}
.p-crosstalk__interview__item__bubble--right--green::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #F6FAEF;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--green::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #F6FAEF;
  }
}
.p-crosstalk__interview__item__bubble--right--blue {
  background-color: #E6ECF4;
  border: 3px solid #5480B3;
}
.p-crosstalk__interview__item__bubble--right--blue::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #5480B3;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--blue::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #5480B3;
  }
}
.p-crosstalk__interview__item__bubble--right--blue::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #E6ECF4;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--blue::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #E6ECF4;
  }
}
.p-crosstalk__interview__item__bubble--right--pink {
  background-color: #FCE6E9;
  border: 3px solid #EA5469;
}
.p-crosstalk__interview__item__bubble--right--pink::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #EA5469;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--pink::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #EA5469;
  }
}
.p-crosstalk__interview__item__bubble--right--pink::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  border-bottom: 21px solid #FCE6E9;
}
@media screen and (min-width: 768px) {
  .p-crosstalk__interview__item__bubble--right--pink::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: none;
    border-left: 21px solid #FCE6E9;
  }
}
.p-crosstalk__interview__item__finimg {
  width: 100%;
  margin: 32px auto 0;
}

.p-data {
  margin: 64px auto 69px;
}
@media screen and (min-width: 768px) {
  .p-data {
    margin: 64px auto 128px;
  }
}
.p-data__lead {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 35px */
  letter-spacing: 0.72px;
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .p-data__lead {
    font-size: 1.25rem;
    line-height: 175%; /* 35px */
    letter-spacing: 0.8px;
  }
}
.p-data__maincontent {
  margin-bottom: 64px;
}
.p-data__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-data__ttl {
    margin-bottom: 32px;
  }
}
.p-data__colitem__ttl, .p-data__colitem__ttl--single, .p-data__colitem__ttl--row02 {
  color: #F57F00;
  color: var(--main-color);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
}
.p-data__colitem__ttl--row02 {
  line-height: 120%; /* 20px */
}
.p-data__colitem__ttl--single {
  text-align: center;
  margin-bottom: 16px;
}
.p-data__subsec {
  margin-bottom: 40px;
}
.p-data__subsec.min {
  max-width: 930px;
  margin: 0 auto 40px;
}
.p-data__subsec__ttl {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 36px */
  letter-spacing: 0.96px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-data__subsec__ttl {
    font-size: 1.5rem;
    letter-spacing: 0.72px;
  }
}
.p-data__subsec__ttl.mb24 {
  margin-bottom: 24px;
}
.p-data__subsec__lead {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
.p-data__content__textblock {
  margin-top: 16px;
}
.p-data__content__text, .p-data__content__text--lh150 {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 28px */
  letter-spacing: 0.64px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-data__content__text, .p-data__content__text--lh150 {
    line-height: 175%;
  }
}
.p-data__content__text--lh150 {
  line-height: 150%;
}
.p-data__content__cautiontext {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
  text-align: right;
  margin-top: 16px;
}
.p-data__content__item {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: 16px;
}
.p-data__content__item__ttlblock {
  align-self: end;
}
.p-data__content__item__textblock {
  align-self: start;
}
.p-data__content01 {
  display: grid;
  gap: 24px;
  grid-template-areas: "deposit" "capital" "founded";
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-data__content01 {
    margin: 0 auto;
    gap: 16px 32px;
    /* デスクトップ配置（左2つ、右1つ） */
    grid-template-areas: "deposit capital" "founded capital";
    grid-template-columns: 1.5fr 1fr;
  }
}
.p-data__content01__card, .p-data__content01__card--founded, .p-data__content01__card--capital, .p-data__content01__card--deposit {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
}
.p-data__content01__card--deposit {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: deposit;
}
.p-data__content01__card--capital {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: capital;
}
.p-data__content01__card--founded {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: founded;
}
@media screen and (min-width: 768px){
  .p-data__content01__card--deposit {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-data__content01__card--capital {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .p-data__content01__card--founded {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
.p-data__content01__depositicon {
  width: 62px;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-data__content01__depositicon {
    margin-right: 20px;
  }
}
.p-data__content01__foundedicon {
  width: 68px;
}
.p-data__content01__capitalicon {
  width: 90%;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-data__content01__capitalicon {
    width: 75%;
    margin-left: 20px;
  }
}
.p-data__content01__item01__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-data__content01__item01__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content01__item01__col {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.p-data__content01__item01__col__money {
  display: flex;
  align-items: center;
}
.p-data__content01__item01__col__money__item dd {
  color: #F57F00;
  color: var(--main-color);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 100%; /* 40px */
  letter-spacing: 1.2px;
}
.p-data__content01__item01__col__money__item dd span {
  color: #F57F00;
  color: var(--main-color);
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.78px;
}
.p-data__content01__item01__col__rank {
  display: flex;
  gap: 8px;
}
.p-data__content01__item01__col__rank__item {
  background-color: #FEF2E6;
  border-radius: 15px;
  padding: 8px;
}
.p-data__content01__item01__col__rank__item dt {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
}
.p-data__content01__item01__col__rank__item dd {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 100%; /* 40px */
  letter-spacing: 0.4px;
}
.p-data__content01__item01__col__rank__item dd span {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 100%; /* 24px */
  letter-spacing: -0.48px;
}
.p-data__content01__item03__main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.p-data__content01__item03__main__item dd {
  color: #F57F00;
  color: var(--main-color);
  font-size: 3rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1.44px;
}
.p-data__content01__item03__main__item dd span {
  color: #F57F00;
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.96px;
}
.p-data__col03content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-data__col03content {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 992px) {
  .p-data__col03content {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.p-data__col03content__upperitem {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.p-data__col03content__upperitem.gapnone {
  gap: 0;
}
.p-data__col03content__item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 16px;
}
.p-data__content02__item {
  padding: 54px 4px 40px;
}
.p-data__content02__item__upper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.p-data__content02__item__upper.gapnone {
  gap: 0;
}
.p-data__content02__item__icon {
  width: 72px;
}
.p-data__content02__item__body dt {
  color: #F57F00;
  color: var(--main-color);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-data__content02__item__body dt {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content02__item__body dt {
    font-size: 1.25rem;
  }
}
.p-data__content02__item__body dt span {
  font-size: 1rem;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-data__content02__item__body dt span {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content02__item__body dt span {
    font-size: 1rem;
  }
}
.p-data__content02__item__body dd {
  color: #F57F00;
  color: var(--main-color);
  font-size: 3rem;
  font-weight: 900;
  line-height: 100%; /* 48px */
  letter-spacing: 1.44px;
}
@media screen and (min-width: 768px) {
  .p-data__content02__item__body dd {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content02__item__body dd {
    font-size: 3rem;
  }
}
.p-data__content02__item__body dd span {
  font-size: 2rem;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .p-data__content02__item__body dd span {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content02__item__body dd span {
    font-size: 2rem;
  }
}
.p-data__content02__item__textblock {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-data__content02__item__textblock {
    margin-top: 24px;
  }
}
.p-data__content02__item__textblock > p {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-data__content02__item__textblock > p {
    line-height: 175%;
  }
}
.p-data__content03 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-data__content03 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content03 {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.p-data__content03__item {
  padding: 24px 16px;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 16px;
}
.p-data__content03__item__upper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-data__content03__item__upper.gapnone {
  gap: 0;
}
.p-data__content03__item__upper--rev {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.p-data__content03__item__ttlblock {
  align-self: end;
}
.p-data__content03__item__textblock {
  align-self: start;
}
.p-data__content03__item__text {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-data__content03__item__text {
    line-height: 175%;
  }
}
.p-data__content03__item__cautiontext {
  color: #3E2214;
  color: var(--text-color);
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-data__content03__item__cautiontext {
    margin-top: 12px;
  }
}
.p-data__content03__item01__icon {
  width: 70px;
}
.p-data__content03__item01__body dt {
  color: #F57F00;
  color: var(--main-color);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
}
.p-data__content03__item01__body dd {
  color: #F57F00;
  color: var(--main-color);
  font-size: 3rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1.44px;
}
.p-data__content03__item01__body dd span {
  color: #F57F00;
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.96px;
}
.p-data__content03__item02__icon {
  width: 46px;
}
.p-data__content03__item02__body {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
}
.p-data__content03__item02__strongtext {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  line-height: 100%; /* 19.2px */
  letter-spacing: 0.96px;
  margin-top: 8px;
}
.p-data__content04__item {
  padding: 40px 16px;
}
.p-data__content04__item .p-data__content__item__ttlblock {
  align-self: start;
}
.p-data__content04__item__body.min dt {
  color: #F57F00;
  color: var(--main-color);
  font-size: 1rem;
  font-weight: 900;
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-data__content04__item__body.min dt {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content04__item__body.min dt {
    font-size: 1rem;
  }
}
.p-data__content04__item__body.min dd {
  color: #F57F00;
  color: var(--main-color);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 100%; /* 48px */
  letter-spacing: 1.44px;
}
@media screen and (min-width: 768px) {
  .p-data__content04__item__body.min dd {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content04__item__body.min dd {
    font-size: 2.75rem;
  }
}
.p-data__content04__item__body.min dd span {
  font-size: 1.75rem;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .p-data__content04__item__body.min dd span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content04__item__body.min dd span {
    font-size: 1.75rem;
  }
}
.p-data__content04__item__body dt {
  color: #F57F00;
  color: var(--main-color);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-data__content04__item__body dt {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content04__item__body dt {
    font-size: 1.25rem;
  }
}
.p-data__content04__item__body dt span {
  font-size: 1rem;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-data__content04__item__body dt span {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content04__item__body dt span {
    font-size: 1rem;
  }
}
.p-data__content04__item__body dd {
  color: #F57F00;
  color: var(--main-color);
  font-size: 3rem;
  font-weight: 900;
  line-height: 100%; /* 48px */
  letter-spacing: 1.44px;
}
@media screen and (min-width: 768px) {
  .p-data__content04__item__body dd {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content04__item__body dd {
    font-size: 3rem;
  }
}
.p-data__content04__item__body dd span {
  font-size: 2rem;
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .p-data__content04__item__body dd span {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .p-data__content04__item__body dd span {
    font-size: 2rem;
  }
}
.p-data__content04__item01__icon {
  width: 60px;
}
.p-data__content04__item02__icon {
  width: 90px;
}
.p-data__content04__item03__icon {
  width: 77px;
}
.p-data__btnwrap {
  margin: 16px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-data__btnwrap {
    margin: 24px auto 0;
  }
}
.p-data__icon {
  position: absolute;
  right: 20px;
}
.p-data__btn {
  max-width: 324px;
  width: 100%;
  font-size: 0.875rem;
  color: #3E2214;
  color: var(--text-color);
  padding: 16px;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 120%; /* 30px */
  letter-spacing: 0.64px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.p-data__btn.center {
  position: relative;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-data__btn {
    font-size: 1rem;
    padding: 16px 24px;
  }
}
.p-data__btn__spantext {
  width: calc(100% - 24px);
}
.p-data__annotationlist li {
  color: #F57F00;
  color: var(--main-color);
  font-size: 0.75rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%; /* 12px */
  letter-spacing: 0.48px;
}
.p-data__question {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-data__question {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
}
.p-data__question__tanekoko {
  width: 120px;
  margin: 0 auto 24px;
}
.p-data__question__item {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 24px;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-data__question__item {
    padding: 40px 12px;
  }
}
@media screen and (min-width: 992px) {
  .p-data__question__item {
    padding: 40px 24px;
  }
}
.p-data__question__item__ttl {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-data__question__item__ttl {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-data__question__item__comment {
  border: 1px solid #FAC48A;
  background-color: #FEF2E6;
  border-radius: 5px;
  margin-bottom: 12px;
  position: relative;
}
.p-data__question__item__comment::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -8px;
  border-top: 8px solid #FAC48A;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}
.p-data__question__item__comment::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -7px;
  border-top: 8px solid #FEF2E6;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  transform: translateX(-50%);
}
.p-data__question__item__comment__ttl {
  font-size: 0.875rem;
  padding: 8px;
  color: #3E2214;
  color: var(--text-color);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  text-align: center;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}
.p-data__question__item__comment__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
.p-data__question__bar {
  display: flex;
  height: 50px; /* グラフの高さ */
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-data__question__bar {
    height: 80px; /* グラフの高さ */
  }
}
.p-data__question__bar__body {
  height: 100%;
}
.p-data__question__legend {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 16px;
  font-size: 0.875rem;
  gap: 16px;
}
.p-data__question__legend li {
  display: flex;
  align-items: center;
  color: #3E2214;
  color: var(--text-color);
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}
.p-data__question__legend__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 4px;
}
.p-data__question__chart01__legend {
  gap: 16px 12px;
}
.p-data__question__chart01 .segment01 {
  background-color: #A3CE5F;
}
.p-data__question__chart01 .segment02 {
  background-color: #C1DE94;
}
.p-data__question__chart01 .segment03 {
  background-color: #D5E8B5;
}
.p-data__question__chart01 .segment04 {
  background-color: #E2F0CD;
}
.p-data__question__chart01__bar .segment01 {
  width: 35%;
}
.p-data__question__chart01__bar .segment02 {
  width: 42%;
}
.p-data__question__chart01__bar .segment03 {
  width: 23%;
}
.p-data__question__chart02 .segment01 {
  background-color: #8AA8CB;
}
.p-data__question__chart02 .segment02 {
  background-color: #B5D87F;
}
.p-data__question__chart02 .segment03 {
  background-color: #F08A98;
}
.p-data__question__chart02 .segment04 {
  background-color: #F8A954;
}
.p-data__question__chart02 .segment05 {
  background-color: #BAA195;
}
.p-data__question__chart02__bar .segment01 {
  width: 35%;
}
.p-data__question__chart02__bar .segment02 {
  width: 31%;
}
.p-data__question__chart02__bar .segment03 {
  width: 15%;
}
.p-data__question__chart02__bar .segment04 {
  width: 15%;
}
.p-data__question__chart02__bar .segment05 {
  width: 4%;
}
.p-data__question__chart03 .segment01 {
  background-color: #F8A954;
}
.p-data__question__chart03 .segment02 {
  background-color: #C1DE94;
}
.p-data__question__chart03__bar .segment01 {
  width: 50%;
}
.p-data__question__chart03__bar .segment02 {
  width: 50%;
}
.p-data__question__chart04 .segment01 {
  background-color: #8AA8CB;
}
.p-data__question__chart04 .segment02 {
  background-color: #B0C4DC;
}
.p-data__question__chart04 .segment03 {
  background-color: #E6ECF4;
}
.p-data__question__chart04__bar .segment01 {
  width: 69%;
}
.p-data__question__chart04__bar .segment02 {
  width: 27%;
}
.p-data__question__chart04__bar .segment03 {
  width: 4%;
}
.p-data__question__chart05__legend {
  font-size: 0.8125rem;
}
.p-data__question__chart05 .segment01 {
  background-color: #F08A98;
}
.p-data__question__chart05 .segment02 {
  background-color: #8AA8CB;
}
.p-data__question__chart05__bar .segment01 {
  width: 88%;
}
.p-data__question__chart05__bar .segment02 {
  width: 12%;
}
.p-data__question__chart06 .segment01 {
  background-color: #F8A954;
}
.p-data__question__chart06__bar .segment01 {
  width: 100%;
}
.p-data__question__chart07 .segment01 {
  background-color: #F57F00;
  background-color: var(--main-color);
}
.p-data__question__chart07 .segment02 {
  background-color: #F8A954;
}
.p-data__question__chart07 .segment03 {
  background-color: #FAC48A;
}
.p-data__question__chart07 .segment04 {
  background-color: #FCD7B0;
}
.p-data__question__chart07__bar .segment01 {
  width: 38%;
}
.p-data__question__chart07__bar .segment02 {
  width: 50%;
}
.p-data__question__chart07__bar .segment03 {
  width: 8%;
}
.p-data__question__chart07__bar .segment04 {
  width: 4%;
}
.p-data__question__chart08 .segment01 {
  background-color: #A3CE5F;
}
.p-data__question__chart08 .segment02 {
  background-color: #C1DE94;
}
.p-data__question__chart08 .segment03 {
  background-color: #D5E8B5;
}
.p-data__question__chart08 .segment04 {
  background-color: #F6FAEF;
}
.p-data__question__chart08__bar .segment01 {
  width: 19%;
}
.p-data__question__chart08__bar .segment02 {
  width: 69%;
}
.p-data__question__chart08__bar .segment03 {
  width: 12%;
}

.p-faq {
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-faq {
    margin: 64px auto 128px;
  }
}
.p-faq__lead > p {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-faq__lead > p {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-faq__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-faq__ttl {
    margin-bottom: 32px;
  }
}
.p-faq__content {
  margin-bottom: 64px;
}
.p-faq__anchor {
  margin: 24px auto 64px;
}
@media screen and (min-width: 768px) {
  .p-faq__anchor {
    margin: 40px auto 64px;
  }
}
.p-faq__faqitem {
  margin-bottom: 16px;
}
.p-faq__faqitem:last-of-type {
  margin-bottom: 0;
}
.p-faq__question {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  text-align: left;
  padding: 8px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    font-size: 1.25rem;
    line-height: 150%; /* 30px */
    letter-spacing: 0.8px;
    padding: 16px;
    align-items: center;
    gap: 16px;
  }
}
.p-faq__question::after {
  content: "";
  border-top: solid 4px #F57F00;
  border-top: solid 4px var(--main-color);
  border-right: solid 4px #F57F00;
  border-right: solid 4px var(--main-color);
  display: block;
  height: 12px;
  position: absolute;
  right: 16px;
  top: 40%;
  transform: rotate(135deg);
  transition: all 0.2s ease-in-out;
  width: 12px;
}
.p-faq__question.active::after {
  transform: rotate(315deg);
  transition: all 0.3s ease-in-out;
}
.p-faq__answerbody {
  display: none;
  padding: 16px 8px;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  .p-faq__answerbody {
    padding: 30px 16px 40px;
  }
}
.p-faq__answerbody.active {
  display: block;
}
.p-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    gap: 16px;
  }
}
.p-faq__answer__block > p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 24.5px */
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .p-faq__answer__block > p {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
  }
}
.p-faq__icon {
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  min-width: 26px;
  min-height: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-faq__icon {
    line-height: 150%; /* 30px */
    letter-spacing: 0.8px;
    min-width: 36px;
    min-height: 36px;
  }
}
.p-faq__icon img {
  width: 11px;
}
@media screen and (min-width: 768px) {
  .p-faq__icon img {
    width: 15px;
  }
}

.p-footer {
  margin: auto;
  padding: 30px 15px 0;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 64px 15px 0;
  }
}
.p-footer__recruit {
  background: url(../images/top/bg_recruit-sp.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: top center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit {
    background: url(../images/top/bg_recruit.png) no-repeat;
    background-size: contain;
    background-position: top center;
  }
}
@media screen and (min-width: 1400px) {
  .p-footer__recruit {
    background: url(../images/top/bg_recruit.png) no-repeat;
    background-size: cover;
    background-position: top center;
  }
}
.p-footer__recruit__inner {
  max-width: 1120px;
  width: 100%;
  margin: auto;
  padding: 85px 15px 60px;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__inner {
    padding: 85px 15px 125px;
  }
}
.p-footer__recruit__ttl {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__ttl {
    margin-bottom: 80px;
  }
}
.p-footer__recruit__main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__main {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    gap: 32px;
  }
}
.p-footer__recruit__item--btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  width: 100%;
}
.p-footer__recruit__item__btn > a {
  padding: 20px 0;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__item__btn > a {
    font-size: 1.5rem;
  }
}
.p-footer__recruit__item__btn > a > span {
  width: calc(100% - 60px);
  margin: 0;
  padding-left: 30px;
}
.p-footer__recruit__item--entrywrap {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 992px) {
  .p-footer__recruit__item--entrywrap {
    flex: none;
    width: 529px;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__recruit__item--entrywrap {
    flex: 1;
  }
}
.p-footer__recruit__item--entry {
  width: 100%;
}
.p-footer__recruit__item--entry__link, .p-footer__recruit__item--entry__link--short, .p-footer__recruit__item--entry__link--long {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  filter: drop-shadow(6px 6px 0 #AE5A00);
  border-radius: 10px;
  background: #F57F00;
  background: var(--main-color);
  padding: 15px;
  height: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__item--entry__link, .p-footer__recruit__item--entry__link--short, .p-footer__recruit__item--entry__link--long {
    padding: 60px 20px;
  }
}
@media screen and (min-width: 992px) {
  .p-footer__recruit__item--entry__link, .p-footer__recruit__item--entry__link--short, .p-footer__recruit__item--entry__link--long {
    padding: 60px 30px 60px 40px;
  }
}
@media (any-hover: hover) {
  .p-footer__recruit__item--entry__link:hover, .p-footer__recruit__item--entry__link--short:hover, .p-footer__recruit__item--entry__link--long:hover {
    transform: translate(6px, 6px);
    filter: drop-shadow(0 0 0 #AE5A00);
  }
}
.p-footer__recruit__item--entry__link:active, .p-footer__recruit__item--entry__link--short:active, .p-footer__recruit__item--entry__link--long:active {
  transform: translate(6px, 6px);
  filter: drop-shadow(0 0 0 #AE5A00);
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__item--entry__link--long {
    display: flex;
    min-height: 175px;
    padding: 20px;
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .p-footer__recruit__item--entry__link--long {
    padding: 28px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__recruit__item--entry__link--long {
    padding: 28px 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__item--entry__link--short {
    padding: 18px;
    display: flex;
    min-height: 84px;
    height: 100%;
  }
}
@media screen and (min-width: 992px) {
  .p-footer__recruit__item--entry__link--short {
    padding: 18px 30px;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__recruit__item--entry__link--short {
    padding: 8px 30px;
  }
}
.p-footer__recruit__item--entry__mintext {
  font-size: clamp(0.75rem, 3.8vw, 1.125rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: clamp(0.1px, 0.12vw, 0.6px);
  color: #FFF;
  margin-bottom: clamp(8px, 2vw, 10px);
  text-align: left;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__item--entry__mintext {
    font-size: clamp(1rem, 2.8vw, 1.5rem);
    margin-bottom: clamp(12px, 1.8vw, 24px);
  }
}
@media screen and (min-width: 992px) {
  .p-footer__recruit__item--entry__mintext {
    font-size: clamp(1.125rem, 5.5vw, 1.875rem);
  }
}
.p-footer__recruit__item--entry__maxtextwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(10px, 3.7vw, 20px);
  width: 100%;
}
.p-footer__recruit__item--entry__maxtextwrap img {
  width: clamp(32px, 7vw, 50px);
  max-width: none;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__item--entry__maxtextwrap img {
    width: clamp(36px, 9vw, 50px);
  }
}
@media screen and (min-width: 992px) {
  .p-footer__recruit__item--entry__maxtextwrap img {
    width: clamp(42px, 9.9vw, 54px);
  }
}
.p-footer__recruit__item--entry__maxtext {
  font-size: clamp(1.5rem, 7.8vw, 3rem);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: clamp(0.2px, 0.18vw, 1.4px);
  color: #FFF;
  text-align: center;
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit__item--entry__maxtext {
    font-size: clamp(1.75rem, 4.7vw, 2.5rem);
  }
}
@media screen and (min-width: 992px) {
  .p-footer__recruit__item--entry__maxtext {
    font-size: clamp(2rem, 8.8vw, 2.875rem);
  }
}
.p-footer__logo {
  max-width: 240px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 300px;
  }
}
.p-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-footer__main {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 64px;
    margin-bottom: 0;
  }
}
.p-footer__main__item--about {
  order: 1;
}
.p-footer__main__item--human {
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-footer__main__item--human {
    order: 2;
  }
}
.p-footer__main__item--recruit {
  order: 5;
}
@media screen and (min-width: 768px) {
  .p-footer__main__item--recruit {
    order: 3;
  }
}
.p-footer__main__item--work {
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-footer__main__item--work {
    order: 4;
  }
}
.p-footer__main__item--workinfo {
  order: 4;
}
@media screen and (min-width: 768px) {
  .p-footer__main__item--workinfo {
    order: 5;
  }
}
.p-footer__main__item--news {
  order: 6;
}
@media screen and (min-width: 768px) {
  .p-footer__main__item--news {
    order: 6;
  }
}
.p-footer__main__parent {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-footer__main__parent {
    padding-bottom: 8px;
    margin-bottom: 24px;
  }
}
.p-footer__main__parent__bficon {
  width: 17px;
  margin-right: 8px;
}
.p-footer__main__parent > button {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
  width: 90%;
  position: relative;
  text-align: left;
}
.p-footer__main__parent > button::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -24px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #F57F00;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid #F57F00;
  border-right: 2px solid var(--main-color);
  transform: rotate(135deg);
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.p-footer__main__parent > button.active::after {
  transform: rotate(315deg);
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-footer__main__parent > button {
    cursor: auto;
  }
  .p-footer__main__parent > button::after {
    content: "";
    display: none;
  }
}
.p-footer__main__parent > a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 100%;
  display: block;
  width: 90%;
  position: relative;
}
.p-footer__main__parent > a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -24px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #F57F00;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid #F57F00;
  border-right: 2px solid var(--main-color);
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-footer__main__parent > a {
    display: inline-block;
    width: auto;
  }
  .p-footer__main__parent > a::after {
    content: "";
    position: absolute;
    top: 7px;
    right: -24px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #F57F00;
    border-top: 2px solid var(--main-color);
    border-right: 2px solid #F57F00;
    border-right: 2px solid var(--main-color);
    transform: rotate(45deg);
    box-sizing: border-box;
  }
}
.p-footer__main__parent--single {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-footer__main__parent--single {
    margin-bottom: 64px;
  }
}
.p-footer__main__parent--single > a {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 100%;
  display: block;
  width: 90%;
  position: relative;
}
.p-footer__main__parent--single > a::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -24px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #F57F00;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid #F57F00;
  border-right: 2px solid var(--main-color);
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-footer__main__parent--single > a {
    display: inline-block;
    width: auto;
  }
  .p-footer__main__parent--single > a::after {
    content: "";
    position: absolute;
    top: 7px;
    right: -24px;
    width: 9px;
    height: 9px;
    margin: auto;
    border-top: 2px solid #F57F00;
    border-top: 2px solid var(--main-color);
    border-right: 2px solid #F57F00;
    border-right: 2px solid var(--main-color);
    transform: rotate(45deg);
    box-sizing: border-box;
  }
}
.p-footer__main__child {
  margin-bottom: 20px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__main__child {
    margin-bottom: 64px;
    display: block;
  }
}
.p-footer__main__child__item {
  margin-bottom: 24px;
}
.p-footer__main__child__item:last-of-type {
  margin-bottom: 0;
}
.p-footer__main__child__item > a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.64px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.p-footer__main__child__item > a::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #F57F00;
  background: var(--main-color);
  margin-right: 10px;
}
.p-footer__snsblcok {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.p-footer__snsblcok__corp {
  border-right: 1px solid #fff;
  padding-right: 16px;
  margin-right: 16px;
}
.p-footer__snsblcok__corp > a {
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.72px;
}
.p-footer__snsblcok__snsicon {
  width: 32px;
  height: 32px;
}
.p-footer__policyblock {
  display: block;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-footer__policyblock {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-footer__policyblock__policy {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-footer__policyblock__policy {
    margin-bottom: 0;
  }
}
.p-footer__policyblock__policy > a {
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
}
.p-footer__policyblock__copy {
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}
.p-footer__mynavi {
  background: url(../images/common/bg_foot-orange-sp.png) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: top center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__mynavi {
    background: url(../images/common/bg_foot-orange-pc.png) no-repeat;
    background-size: cover;
    background-position: top center;
  }
}
@media screen and (min-width: 1400px) {
  .p-footer__mynavi {
    background: url(../images/common/bg_foot-orange-pc.png) no-repeat;
    background-size: cover;
    background-position: top center;
  }
}
.p-footer__mynavi__inner {
  max-width: 1120px;
  width: 100%;
  margin: auto;
  padding: 85px 15px 40px;
}
@media screen and (min-width: 768px) {
  .p-footer__mynavi__inner {
    padding: 85px 15px 80px;
    position: relative;
    z-index: 2;
  }
}
.p-footer__mynavi__bud {
  width: 40px;
  margin: 0 auto 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__mynavi__bud {
    width: 70px;
    margin: 0 auto 40px;
  }
}
.p-footer__mynavi__text {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  margin-bottom: 40px;
}
.p-footer__mynavi__text:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-footer__mynavi__text {
    font-size: 1.75rem;
    line-height: 150%;
    letter-spacing: 1.12px;
  }
}
.p-footer__mynavi__btnwrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-footer__mynavi__btnwrap {
    margin-top: 40px;
  }
}
.p-footer__mynavi__btn {
  width: 324px;
  background-color: #fff;
  position: relative;
  border-radius: 5px;
}
.p-footer__mynavi__btn__link {
  display: block;
  padding: 20px 0;
  position: relative;
}
.p-footer__mynavi__btn__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(../images/common/icon_outer.svg) no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(0) saturate(100%) invert(12%) sepia(79%) saturate(411%) hue-rotate(337deg) brightness(97%) contrast(96%);
}
.p-footer__mynavi__btn__icon {
  width: 200px;
  margin: 0 auto;
}
.p-footer__mynavi__tanekoko {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__mynavi__tanekoko {
    width: 25%;
    position: absolute;
    right: 10px;
    bottom: 0;
    z-index: 1;
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .p-footer__mynavi__tanekoko {
    width: 360px;
  }
}
.p-footer__mynavi__tanekokosp {
  display: block;
  position: absolute;
  right: 0;
  top: -77px;
  z-index: 1;
  width: 75px;
}
@media screen and (min-width: 768px) {
  .p-footer__mynavi__tanekokosp {
    display: none;
  }
}

.p-header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 10px;
}
.p-header__nav__logo {
  width: 180px;
  z-index: 25;
}
@media screen and (min-width: 768px) {
  .p-header__nav__logo {
    width: 150px;
  }
}
@media screen and (min-width: 992px) {
  .p-header__nav__logo {
    width: 230px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__nav__logo {
    width: 280px;
  }
}
.p-header__nav__main {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-header__nav__main {
    gap: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-header__nav__list {
    display: flex;
    gap: 26px;
  }
}
.p-header__nav__list__item {
  position: relative;
}
.p-header__nav__list__item__btn {
  position: relative;
  font-size: 1rem;
  color: #3E2214;
  color: var(--text-color);
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-header__nav__list__item__btn {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 992px) {
  .p-header__nav__list__item__btn {
    font-size: 1rem;
  }
}
.p-header__nav__list__item__btn::after {
  content: "";
  border-top: solid 2px #F57F00;
  border-top: solid 2px var(--main-color);
  border-right: solid 2px #F57F00;
  border-right: solid 2px var(--main-color);
  display: block;
  height: 7px;
  position: absolute;
  right: -11px;
  top: 30%;
  transform: rotate(135deg);
  transition: all 0.3s ease-in-out;
  width: 7px;
}
.p-header__nav__list__item__btn.active {
  transition: all 0.3s ease-in-out;
  color: #F57F00;
  color: var(--main-color);
}
.p-header__nav__list__item__btn.active::after {
  transform: rotate(315deg);
  transition: all 0.3s ease-in-out;
}
.p-header__nav__list__item__icon {
  width: 17px;
  margin-right: 5px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-header__nav__list__item__icon {
    display: none;
  }
}
.p-header__nav__list__item__link {
  position: relative;
  font-size: 1rem;
  color: #3E2214;
  color: var(--text-color);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  width: 100%;
  display: block;
  padding-bottom: 24px;
  border-bottom: 1px solid #3E2214;
  border-bottom: 1px solid var(--text-color);
}
.p-header__nav__list__item__link::after {
  content: "";
  border-top: solid 2px #F57F00;
  border-top: solid 2px var(--main-color);
  border-right: solid 2px #F57F00;
  border-right: solid 2px var(--main-color);
  display: block;
  height: 8px;
  position: absolute;
  right: 10px;
  top: 30%;
  transform: rotate(45deg);
  transition: all 0.2s ease-in-out;
  width: 8px;
}
@media (any-hover: hover) {
  .p-header__nav__list__item__link:hover {
    transition: all 0.3s ease;
    color: #F57F00;
    color: var(--main-color);
    text-decoration: underline;
  }
}
.p-header__nav__list__childitem {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav__list__childitem {
    position: absolute;
    top: 30px;
    left: -30px;
    background: #fff;
    margin-top: 10px;
    padding: 24px 16px;
    border-radius: 5px;
    max-width: 300px;
    width: -moz-max-content;
    width: max-content;
  }
  .p-header__nav__list__childitem > li {
    margin-bottom: 16px;
  }
  .p-header__nav__list__childitem > li:last-of-type {
    margin-bottom: 0;
  }
  .p-header__nav__list__childitem > li > a {
    color: #3E2214;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 700;
    font-weight: var(--base-font-bold);
    line-height: 100%;
    position: relative;
    display: inline-block;
    padding-right: 16px;
    transition: all 0.3s ease;
  }
  .p-header__nav__list__childitem > li > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 7px;
    height: 7px;
    margin: auto;
    border-top: 2px solid #3E2214;
    border-top: 2px solid var(--text-color);
    border-right: 2px solid #3E2214;
    border-right: 2px solid var(--text-color);
    transform: rotate(45deg);
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) and (any-hover: hover) {
  .p-header__nav__list__childitem > li > a:hover {
    transition: all 0.3s ease;
    color: #F57F00;
    color: var(--main-color);
  }
}
.p-header__nav__list.sp {
  padding-top: 57px;
  width: 90%;
  margin: 57px auto 0;
}
.p-header__nav__list.sp > .p-header__nav__list__item {
  margin-bottom: 24px;
}
.p-header__nav__list.sp .p-header__nav__list__item__btn {
  width: 100%;
  text-align: left;
  padding-bottom: 24px;
  border-bottom: 1px solid #3E2214;
  border-bottom: 1px solid var(--text-color);
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .p-header__nav__list.sp .p-header__nav__list__item__btn:hover {
    transition: all 0.3s ease;
    color: #F57F00;
    color: var(--main-color);
    text-decoration: underline;
  }
}
.p-header__nav__list.sp .p-header__nav__list__item__btn::after {
  top: 15%;
  right: 10px;
}
.p-header__nav__list.sp .p-header__nav__list__childitem {
  margin-top: 16px;
}
.p-header__nav__list.sp .p-header__nav__list__childitem li {
  margin-bottom: 20px;
}
.p-header__nav__list.sp .p-header__nav__list__childitem li:last-of-type {
  margin-bottom: 0;
}
.p-header__nav__list.sp .p-header__nav__list__childitem li a {
  color: #3E2214;
  color: var(--text-color);
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
  transition: all 0.3s ease;
}
.p-header__nav__list.sp .p-header__nav__list__childitem li a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background: #F57F00;
  background: var(--main-color);
  margin-right: 10px;
  vertical-align: super;
}
@media (any-hover: hover) {
  .p-header__nav__list.sp .p-header__nav__list__childitem li a:hover {
    transition: all 0.3s ease;
    color: #F57F00;
    color: var(--main-color);
    text-decoration: underline;
  }
}
.p-header__nav__btn {
  z-index: 25;
}
@media screen and (min-width: 768px) {
  .p-header__nav__btn {
    margin-left: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__nav__btn {
    margin-right: 0;
  }
}
.p-header__nav__btn > a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1rem;
  padding: 10px 5px;
  font-weight: bold;
  border-radius: 5px;
  background: #F57F00;
  background: var(--main-color);
  filter: drop-shadow(3px 3px 0 #DF7400);
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-header__nav__btn > a {
    font-size: 1rem;
    padding: 10px 5px;
  }
}
@media screen and (min-width: 992px) {
  .p-header__nav__btn > a {
    font-size: 1.125rem;
    padding: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .p-header__nav__btn > a {
    font-size: 1.3rem;
    padding: 4px 10px;
  }
}
@media (any-hover: hover) {
  .p-header__nav__btn > a:hover {
    transform: translate(3px, 3px);
    filter: drop-shadow(0 0 0 #DF7400);
  }
}
.p-header__nav__btn > a:active {
  transform: translate(3px, 3px);
  filter: drop-shadow(0 0 0 #DF7400);
}
.p-header__nav__btn > a > img {
  width: 30px;
  margin-right: 5px;
}
.p-header__navipc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__navipc {
    display: block;
  }
}
.p-header__navisp {
  visibility: hidden;
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FEF2E6;
  height: 100vh;
  overflow-y: scroll;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.p-header__navisp.active {
  visibility: visible;
  opacity: 1;
}

.p-heading__lowlv3 {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-heading__lowlv3 {
    font-size: 1.5rem;
    letter-spacing: 0.96px;
  }
}

.p-mainvis {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mainvis {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }
}
@media screen and (min-width: 1200px) {
  .p-mainvis {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    width: 90%;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
  }
}
.p-mainvis__wrapper {
  padding-bottom: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mainvis__wrapper {
    padding-bottom: 20px;
  }
}
.p-mainvis__tanekoko {
  position: absolute;
  left: unset;
  right: 10px;
  bottom: -6%;
  width: 170px;
  height: 175px;
  pointer-events: none;
  z-index: 1;
  transform: rotate(25deg);
}
@media screen and (min-width: 576px) {
  .p-mainvis__tanekoko {
    bottom: -7.5%;
    left: unset;
    right: 10px;
    width: 170px;
    height: 175px;
  }
}
@media screen and (min-width: 768px) {
  .p-mainvis__tanekoko {
    bottom: -25%;
    left: 40px;
    right: unset;
    width: 400px;
    height: 438px;
    transform: unset;
  }
}
@media screen and (min-width: 992px) {
  .p-mainvis__tanekoko {
    bottom: -24%;
  }
}
@media screen and (min-width: 1400px) {
  .p-mainvis__tanekoko {
    bottom: -22%;
  }
}
.p-mainvis__tanekoko img {
  display: block;
  width: 100%;
  height: auto;
}
.p-mainvis__item {
  flex: 1;
}
.p-mainvis__textblock {
  aspect-ratio: 16/9;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-mainvis__textblock {
    flex: 0.92;
    padding: 120px 0 0 clamp(16px, 1.6vw, 28px);
  }
}
.p-mainvis__textblock > h1 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mainvis__textblock > h1 {
    width: 90%;
  }
}
.p-mainvis__sliderwrap {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .p-mainvis__sliderwrap {
    flex: 1.08;
  }
}
.p-mainvis__slider {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mainvis__slider {
    width: 70%;
  }
}
.p-mainvis__text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #3E2214;
  color: var(--text-color);
  margin-top: 30px;
}
.p-mainvis__text > p {
  font-weight: bold;
}
.p-mainvis__newswrap--sp {
  display: block;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-mainvis__newswrap--sp {
    display: none;
  }
}
.p-mainvis__newswrap--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mainvis__newswrap--pc {
    display: block;
    margin-top: 32px;
  }
}
.p-mainvis__news {
  width: 100%;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 46px;
}
@media screen and (min-width: 768px) {
  .p-mainvis__news {
    margin-top: 20px;
    max-width: 704px;
  }
}
.p-mainvis__news__title {
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  background: #F57F00;
  background: var(--main-color);
  padding: 10px 16px;
}
.p-mainvis__news__title > img {
  margin-left: 10px;
  width: 18px;
  height: 18px;
}
.p-mainvis__news__text {
  border-radius: 0 10px 10px 0;
  background: #FFF;
  box-shadow: 4px 4px 0 0 #F57F00;
  box-shadow: 4px 4px 0 0 var(--main-color);
  position: relative;
  top: 0;
  margin-top: -10px;
  margin-left: -30px;
  padding-left: 20px;
  font-size: 1rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-mainvis__news__text {
    border-radius: 10px 0 0 10px;
    font-size: 1.25rem;
    margin-left: 0;
    padding-left: 0;
  }
}
@media (any-hover: hover) {
  .p-mainvis__news__text:hover {
    transition: all 0.3s;
    top: 4px;
    box-shadow: 0 0 0 0 #F57F00;
    box-shadow: 0 0 0 0 var(--main-color);
  }
}
.p-mainvis__news__text > a {
  color: #3E2214;
  color: var(--text-color);
  font-weight: bold;
  display: block;
  padding: 24px 16px 16px 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mainvis__news__text > a {
    font-size: 1.125rem;
    padding: 26px 16px;
  }
}
.p-mainvis__news__text > a img {
  width: 18px;
  height: 18px;
  position: absolute;
  top: unset;
  bottom: 8px;
  right: 8px;
}
@media screen and (min-width: 768px) {
  .p-mainvis__news__text > a img {
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    right: 40px;
  }
}
.p-mainvis__news__text > a span {
  display: block;
  width: calc(100% - 36px);
}
@media screen and (min-width: 768px) {
  .p-mainvis__news__text > a span {
    width: calc(100% - 60px);
  }
}
.p-mainvis__news__listlink {
  text-align: left;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-mainvis__news__listlink {
    text-align: right;
    margin-right: 40px;
  }
}
.p-mainvis__news__listlink > a {
  color: #F57F00;
  color: var(--main-color);
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 16px */
  letter-spacing: 0.64px;
  padding: 0;
}

.p-mainvis__wrapper .splide__pagination {
  bottom: 15px !important;
  left: unset !important;
}

.splide__pagination li {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
  margin: 0 -8px !important;
  overflow: visible;
}

.splide__pagination__page {
  width: 40px !important; /* 種の画像の横幅に合わせて調整 */
  height: 50px !important;
  background: url("../images/common/icon_slide.png") no-repeat center bottom/contain !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important; /* 余計な影を消す */
  outline: none;
  padding: 0;
  opacity: 0.8;
  overflow: visible;
  transition: all 0.4s ease;
  transform-origin: bottom center;
}

.splide__pagination__page.is-active {
  width: 40px !important; /* 芽の画像が収まるサイズに広げる */
  height: 50px !important; /* 芽が伸びる高さを確保 */
  background: url("../images/common/icon_slidecurrent.png") no-repeat center bottom/contain !important;
  opacity: 1;
  transform: scale(1);
  /* 芽が出るアニメーション */
  animation: sprout-grow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes sprout-grow {
  0% {
    transform: scale(0.5) translateY(20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.p-news__list {
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin: 64px auto 128px;
  }
}
.p-news__list__item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed #FAC48A;
}
.p-news__list__item__date {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 14px */
  letter-spacing: 0.56px;
  margin-bottom: 8px;
}
.p-news__list__item__title > a {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.p-news__list__item__title > a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.7;
}
.p-news__list__pagenation {
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-news__list__pagenation {
    margin: 64px auto 0;
  }
}
.p-news__list__pagenation__item {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-news__list__pagenation__item.current {
  border-radius: 4px;
  background-color: #FCD7B0;
  border: 2px solid #FAC48A;
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
}
.p-news__list__pagenation__item > a {
  color: #3E2214;
  color: var(--text, #3E2214);
  text-align: center;
  font-size: 1.25rem;
  font-size: 20px;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%;
  letter-spacing: 0.8px;
  text-decoration: underline;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .p-news__list__pagenation__item > a:hover {
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.7;
  }
}
.p-news__detail {
  margin: auto;
}
.p-news__detail__main {
  max-width: 927px;
  width: 100%;
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-news__detail__main {
    margin: 64px auto 128px;
  }
}
.p-news__detail__main__ttlblock {
  margin-bottom: 40px;
}
.p-news__detail__main__date {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%;
  letter-spacing: 0.56px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-news__detail__main__date {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
  }
}
.p-news__detail__main__ttl {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-news__detail__main__ttl {
    font-size: 1.5rem;
    letter-spacing: 0.96px;
    line-height: 120%;
  }
}
.p-news__detail__main__textblock {
  margin-bottom: 24px;
}
.p-news__detail__main__textblock p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
.p-news__detail__main__img {
  margin-bottom: 24px;
  text-align: center;
}
.p-news__detail__main__img > img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-news__detail__main__img > img {
    width: 80%;
  }
}
.p-news__detail__main__btn {
  margin: 64px auto 0;
}
.p-news__detail__main__btn > a {
  width: 100%;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__detail__main__btn > a {
    font-size: 1rem;
  }
}

.p-project__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-project__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}
.p-project__list__item {
  display: grid;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-project__list__item {
    gap: 12px;
  }
}
.p-project__list__item__kinds, .p-project__list__item__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
}
.p-project__list__item__img {
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 20px;
}
.p-project__list__item__img__ttltext, .p-project__list__item__img__ttltextmin {
  position: absolute;
  bottom: 10px;
  left: 9px;
  right: 56px;
  pointer-events: none;
  max-width: calc(100% - 65px);
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltext, .p-project__list__item__img__ttltextmin {
    bottom: 16px;
    left: 14px;
    right: 92px;
    max-width: calc(100% - 106px);
  }
}
.p-project__list__item__img__ttltext__body {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 7px 5px;
  margin-bottom: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltext__body {
    font-size: clamp(0.875rem, 1.59vw, 1.375rem);
    padding: 12px 8px;
    margin-bottom: 13px;
    letter-spacing: 0.9px;
  }
}
.p-project__list__item__img__ttltext__body:last-of-type {
  margin-bottom: 0;
}
.p-project__list__item__img__ttltext__body02 {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 7px 5px;
  margin-bottom: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltext__body02 {
    font-size: clamp(0.75rem, 1.49vw, 1.375rem);
    padding: 12px 8px;
    margin-bottom: 13px;
    letter-spacing: 0.9px;
  }
}
.p-project__list__item__img__ttltext__body02:last-of-type {
  margin-bottom: 0;
}
.p-project__list__item__img__ttltext__body03 {
  font-size: 0.8125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 7px 5px;
  margin-bottom: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltext__body03 {
    font-size: clamp(0.75rem, 1.54vw, 1.3125rem);
    padding: 12px 8px;
    margin-bottom: 13px;
    letter-spacing: 0.9px;
  }
}
.p-project__list__item__img__ttltext__body03:last-of-type {
  margin-bottom: 0;
}
.p-project__list__item__img__ttltext__businessbody {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 7px 5px;
  margin-bottom: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltext__businessbody {
    font-size: clamp(0.875rem, 4vw, 1.125rem);
    padding: 12px 8px;
    margin-bottom: 13px;
    letter-spacing: 0.9px;
  }
}
.p-project__list__item__img__ttltext__businessbody02 {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 7px 5px;
  margin-bottom: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltext__businessbody02 {
    font-size: clamp(0.875rem, 1.8vw, 1.125rem);
    padding: 12px 8px;
    margin-bottom: 13px;
    letter-spacing: 0.9px;
  }
}
.p-project__list__item__img__ttltext__businessbody03 {
  font-size: 0.8125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 7px 5px;
  margin-bottom: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltext__businessbody03 {
    font-size: clamp(0.875rem, 1.7vw, 1rem);
    padding: 12px 8px;
    margin-bottom: 13px;
    letter-spacing: 0.9px;
  }
}
.p-project__list__item__img__ttltextmin__body {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.44px;
  padding: 6px 4px;
  margin-bottom: 6px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltextmin__body {
    font-size: clamp(0.75rem, 1.55vw, 1.375rem);
    padding: 10px 7px;
    margin-bottom: 10px;
    letter-spacing: 0.68px;
  }
}
.p-project__list__item__img__ttltextmin__body:last-of-type {
  margin-bottom: 0;
}
.p-project__list__item__img__ttltextmin__body02 {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.44px;
  padding: 6px 4px;
  margin-bottom: 6px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltextmin__body02 {
    font-size: clamp(0.75rem, 1.49vw, 1.375rem);
    padding: 10px 7px;
    margin-bottom: 10px;
    letter-spacing: 0.68px;
  }
}
.p-project__list__item__img__ttltextmin__body02:last-of-type {
  margin-bottom: 0;
}
.p-project__list__item__img__ttltextmin__body03 {
  font-size: 0.8125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.44px;
  padding: 6px 4px;
  margin-bottom: 6px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttltextmin__body03 {
    font-size: clamp(0.75rem, 1.39vw, 1.375rem);
    padding: 10px 7px;
    margin-bottom: 10px;
    letter-spacing: 0.68px;
  }
}
.p-project__list__item__img__ttltextmin__body03:last-of-type {
  margin-bottom: 0;
}
.p-project__list__item__img__ttlimg {
  position: absolute;
  bottom: 10px;
  left: 9px;
  right: 56px;
  pointer-events: none;
  max-width: calc(100% - 65px);
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__ttlimg {
    bottom: 16px;
    left: 14px;
    right: 92px;
    max-width: min(clamp(226px, 31vw, 415px), 100% - 106px);
  }
}
.p-project__list__item__img__ttlimg img {
  display: block;
  width: 100%;
}
.p-project__list__item__img__icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__img__icon {
    position: absolute;
    bottom: 24px;
    right: 28px;
  }
}
.p-project__list__item__img__icon img {
  pointer-events: none;
}
.p-project__list__item__img__story {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
}
.p-project__list__item__name {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-project__list__item__name {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    line-height: 100%;
  }
}
.p-project__detail__btnwrap {
  padding: 0 15px;
}
.p-project__detail__breadcrumb {
  max-width: 1120px;
  margin: 24px auto;
  padding: 0 15px;
}
.p-project__detail__mainimgwrap {
  position: relative;
  isolation: isolate;
}
.p-project__detail__mainimg, .p-project__detail__mainimg--03, .p-project__detail__mainimg--02, .p-project__detail__mainimg--01 {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin-left: auto;
  padding: 24px 16px 0;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .p-project__detail__mainimg, .p-project__detail__mainimg--03, .p-project__detail__mainimg--02, .p-project__detail__mainimg--01 {
    padding: 44px 46px 0;
    width: 78%;
  }
}
.p-project__detail__mainimg--01 {
  background: url(../images/project/01/img_project01-main.jpg) no-repeat right top/cover;
}
.p-project__detail__mainimg--02 {
  background: url(../images/project/02/img_project02-main.jpg) no-repeat right top/cover;
}
.p-project__detail__mainimg--03 {
  background: url(../images/project/03/img_project03-main.jpg) no-repeat right top/cover;
}
.p-project__detail__hero, .p-project__detail__hero--blue, .p-project__detail__hero--pink {
  position: relative;
  width: 98%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
  margin-top: -23%;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__hero, .p-project__detail__hero--blue, .p-project__detail__hero--pink {
    min-height: 100%;
    width: 90%;
    padding: 24px 0 44px 10%;
    gap: 40px;
  }
}
.p-project__detail__hero::before, .p-project__detail__hero--blue::before, .p-project__detail__hero--pink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, #FCD7B0 0.35%, #FAC48A 99.64%);
  z-index: 0;
}
.p-project__detail__hero--pink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, #FCE6E9 0%, #F08A98 100%);
  z-index: 0;
}
.p-project__detail__hero--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, #E6ECF4 0%, #8AA8CB 100%);
  z-index: 0;
}
.p-project__detail__herohead {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__herohead {
    padding-top: 0;
  }
}
.p-project__detail__herohead h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.p-project__detail__herotitleline, .p-project__detail__herotitleline--bluemin, .p-project__detail__herotitleline--pinkmin {
  display: inline-block;
  background: #F79933;
  color: #fff;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  font-size: clamp(1.125rem, 2.9vw, 2.5rem);
  line-height: 100%;
  letter-spacing: 0.54px;
  padding: 12px 10px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__herotitleline, .p-project__detail__herotitleline--bluemin, .p-project__detail__herotitleline--pinkmin {
    padding: 24px 18px;
    letter-spacing: 1.2px;
  }
}
.p-project__detail__herotitleline--pinkmin {
  background: #EA5469;
  font-size: clamp(1.0625rem, 2.2vw, 2rem);
  letter-spacing: 0.525px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__herotitleline--pinkmin {
    letter-spacing: 0.96px;
  }
}
.p-project__detail__herotitleline--bluemin {
  background: #5480B3;
  font-size: clamp(1.09375rem, 2.2vw, 2rem);
  letter-spacing: 0.525px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__herotitleline--bluemin {
    letter-spacing: 0.96px;
  }
}
.p-project__detail__herometa, .p-project__detail__herometa--blue, .p-project__detail__herometa--pink {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 10px;
  background: #fff;
  color: #F57F00;
  color: var(--main-color);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  font-size: clamp(0.875rem, 1.7vw, 1.5rem);
  line-height: 100%;
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__herometa, .p-project__detail__herometa--blue, .p-project__detail__herometa--pink {
    padding: 24px 18px;
    letter-spacing: 0.96px;
    margin-top: 12px;
  }
}
.p-project__detail__herometa--pink {
  color: #E5334C;
}
.p-project__detail__herometa--blue {
  color: #3368A5;
}
.p-project__detail__heroabout, .p-project__detail__heroabout--03, .p-project__detail__heroabout--02 {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 24px;
  color: #3E2214;
  color: var(--text-color);
}
@media screen and (min-width: 768px) {
  .p-project__detail__heroabout, .p-project__detail__heroabout--03, .p-project__detail__heroabout--02 {
    padding: 24px 80px 0;
  }
}
.p-project__detail__heroabout--02 {
  padding: 0 0 24px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__heroabout--02 {
    padding: 2.75vw 80px 0;
  }
}
.p-project__detail__heroabout--03 {
  padding: 0 0 24px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__heroabout--03 {
    padding: 2.75vw 80px 0;
  }
}
.p-project__detail__heroaboutttl {
  font-weight: 700;
  font-weight: var(--base-font-bold);
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__heroaboutttl {
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.96px;
  }
}
.p-project__detail__heroaboutlist {
  display: grid;
  gap: 0;
}
.p-project__detail__heroaboutitem, .p-project__detail__heroaboutitem--blue, .p-project__detail__heroaboutitem--pink {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  font-size: 0.875rem;
  line-height: 150%;
  letter-spacing: 0.56px;
  color: #3E2214;
  color: var(--text-color);
  background: url(../images/common/icon_check.svg) no-repeat 0 center;
  background-size: 18px auto;
}
@media screen and (min-width: 768px) {
  .p-project__detail__heroaboutitem, .p-project__detail__heroaboutitem--blue, .p-project__detail__heroaboutitem--pink {
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0.64px;
    padding: 14px 0 14px 30px;
    background-size: 24px auto;
  }
}
.p-project__detail__heroaboutitem--pink {
  background-image: url(../images/project/02/icon_check-pink.svg);
}
.p-project__detail__heroaboutitem--blue {
  background-image: url(../images/project/03/icon_check-blue.svg);
}
.p-project__detail__heroaboutitem:last-of-type, .p-project__detail__heroaboutitem--pink:last-of-type, .p-project__detail__heroaboutitem--blue:last-of-type {
  border-bottom: 0;
}
.p-project__detail__main {
  margin: 0 auto;
}
.p-project__detail__overview {
  max-width: 930px;
  margin: 64px auto;
  padding: 0 15px;
}
.p-project__detail__overview__main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__overview__main {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }
}
.p-project__detail__overview__main__img {
  max-width: 464px;
  width: 100%;
  margin: auto;
}
.p-project__detail__overview__main__data {
  width: 100%;
}
.p-project__detail__overview__main__data dt {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.p-project__detail__overview__main__data dd {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
}
.p-project__detail__contentwrap {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__contentwrap {
    margin-top: 64px;
  }
}
.p-project__detail__content, .p-project__detail__content--reverse {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .p-project__detail__content, .p-project__detail__content--reverse {
    width: 88%;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .p-project__detail__content--reverse {
    margin-left: auto;
  }
}
.p-project__detail__content__inner, .p-project__detail__content__inner--reverse {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "ttl" "img" "textblock";
  gap: 24px;
  align-items: start;
}
@media screen and (min-width: 768px) {
  .p-project__detail__content__inner, .p-project__detail__content__inner--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "img body";
    gap: 32px;
  }
}
.p-project__detail__content__inner--reverse {
  grid-template-areas: "ttl" "img" "textblock";
}
@media screen and (min-width: 768px) {
  .p-project__detail__content__inner--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "body img";
  }
}
.p-project__detail__content__img {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: img;
  align-self: start;
}
.p-project__detail__content__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-project__detail__content__body {
  display: contents;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-project__detail__content__body {
    grid-area: body;
    display: grid;
    gap: 40px;
    align-content: start;
    margin-top: 40px;
  }
}
.p-project__detail__content__ttl {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: ttl;
}
@media screen and (min-width: 768px) {
  .p-project__detail__content__ttl {
    grid-area: auto;
  }
}
.p-project__detail__content__ttl__body {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.p-project__detail__content__textblock {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: textblock;
}
@media screen and (min-width: 768px){
  .p-project__detail__content__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .p-project__detail__content__img {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .p-project__detail__content__body {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .p-project__detail__content__body {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-project__detail__content__textblock {
    grid-area: auto;
  }
}
.p-project__detail__content__textblock p {
  margin-bottom: 1rem;
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-size: var(--Standard-Std-16, 16px);
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
}
.p-project__detail__content__textblock p:last-of-type {
  margin-bottom: 0;
}
.p-project__detail__largeimg {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 40px;
  padding: 0 15px;
}
.p-project__detail__linklistwrap {
  background: linear-gradient(180deg, #E7E9F1 0%, #F6F7F0 100%);
  background: linear-gradient(180deg, #E7E9F1 0%, var(--base, #F6F7F0) 100%);
  padding: 40px 0 64px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .p-project__detail__linklistwrap {
    width: 94%;
    padding: 80px 0 128px;
  }
}
.p-project__detail__linklist {
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  width: 100%;
  padding: 0 15px;
}
@media screen and (min-width: 992px) {
  .p-project__detail__linklist {
    margin-left: 12%;
    margin-right: 4%;
    padding: 0;
    width: 84%;
  }
}
.p-project__detail__linklist__ttl {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 48px */
  letter-spacing: 1.28px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__linklist__ttl {
    margin-bottom: 24px;
    font-size: 2rem;
    letter-spacing: 0.96px;
  }
}
.p-project__detail__btnwrap {
  margin-bottom: 64px;
}
@media screen and (min-width: 768px) {
  .p-project__detail__btnwrap {
    margin-bottom: 128px;
  }
}

.p-recruit {
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-recruit {
    margin: 64px auto 128px;
  }
}
.p-recruit__lead {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruit__lead {
    margin-bottom: 32px;
  }
}
.p-recruit__lead > p {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
  margin-bottom: 1rem;
}
.p-recruit__lead > p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__lead > p {
    margin-bottom: 0;
  }
}
.p-recruit__tanekoko {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
}
.p-recruit__tanekoko__img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .p-recruit__tanekoko__img {
    width: 200px;
  }
}
.p-recruit__tanekoko__text {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-recruit__tanekoko__text {
    letter-spacing: 0.8px;
    font-size: 1.25rem;
  }
}
.p-recruit__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruit__ttl {
    margin-bottom: 32px;
  }
}
.p-recruit__table__headtext {
  display: inline-block;
  text-align: left;
}
.p-recruit__table__disc {
  margin-bottom: 1rem;
}
.p-recruit__table__disc:last-of-type {
  margin-bottom: 0;
}
.p-recruit__table__disc dt {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
.p-recruit__table__disc p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
.p-recruit__content {
  margin-bottom: 64px;
}
.p-recruit__btnwrap {
  position: relative;
}
.p-recruit__btn {
  color: #3E2214;
  color: var(--text-color);
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 120%;
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .p-recruit__btn {
    font-size: 1rem;
  }
}
.p-recruit__btncol {
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruit__btncol {
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
  }
}
.p-recruit__faqitem {
  margin-bottom: 24px;
}
.p-recruit__faqbtn {
  position: relative;
  margin: 16px auto 0;
}
@media screen and (min-width: 768px) {
  .p-recruit__faqbtn {
    margin: 24px auto 0;
  }
}

.p-table__w1000 {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.p-table--data {
  width: 100%;
  margin-top: 24px;
}
.p-table--data:first-of-type {
  margin-top: 0;
}
.p-table--data--bnone {
  border-top: none !important;
  border-left: none !important;
}
.p-table--data th, .p-table--data td {
  font-size: 1.25rem;
  text-align: center;
  color: #3E2214;
  color: var(--text-color);
}
.p-table--data th {
  padding: 12px 10px;
}
@media screen and (min-width: 768px) {
  .p-table--data th {
    padding: 16px 10px;
  }
}
.p-table--data td {
  padding: 12px 10px;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%; /* 20px */
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-table--data td {
    padding: 20px 10px;
  }
}
.p-table--data--sphead01 {
  border-right: none !important;
}
.p-table--data--sphead02 {
  border-left: none !important;
  text-align: left !important;
}
.p-table--data--head {
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.8px;
}
.p-table--data--bodyhead {
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 120%;
  letter-spacing: 0.8px;
}
.p-table__recruit {
  width: 100%;
}
.p-table__recruit th {
  width: 30%;
  border-bottom: 1px solid #FAC48A;
  padding: 16px 10px;
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 175%; /* 31.5px */
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-table__recruit th {
    width: 20%;
    padding: 32px 16px;
  }
}
.p-table__recruit td {
  width: 70%;
  background-color: #fff;
  border-bottom: 1px solid #FAC48A;
  padding: 8px;
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-table__recruit td {
    width: 80%;
    padding: 32px 24px;
  }
}
.p-table__recruit td > p {
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}

.p-title__icon {
  width: 37px;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-title__icon {
    width: 70px;
    margin-right: 5px;
  }
}

.p-top {
  overflow-x: hidden;
}
.p-top__budicon {
  margin-bottom: 4px;
}
@media screen and (min-width: 768px) {
  .p-top__budicon {
    margin-bottom: 0;
  }
}
.p-top__ttlicon {
  width: 37px;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-top__ttlicon {
    width: 70px;
    margin-right: 5px;
  }
}
.p-top__know {
  background: url(../images/top/img_know-frame-sp.png) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  background-position: top center;
  position: relative;
  z-index: 2;
  padding-bottom: 95px;
}
@media screen and (min-width: 768px) {
  .p-top__know {
    background: url(../images/top/img_know-frame.png) no-repeat;
    background-size: contain;
    background-position: top center;
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1400px) {
  .p-top__know {
    background: url(../images/top/img_know-frame.png) no-repeat;
    background-size: cover;
    padding-bottom: 200px;
    background-position: top center;
  }
}
.p-top__know__tanekoko {
  position: absolute;
  left: 0;
  top: 24px;
  width: 25%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top__know__tanekoko {
    top: -286px;
    left: 40px;
    width: 25%;
    height: 100%;
  }
}
.p-top__know__tanekoko img {
  display: block;
  width: 100%;
  height: auto;
}
.p-top__know__inner {
  padding: 100px 15px 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-top__know__inner {
    padding: 100px 15px 0 15px;
    margin: 0 auto 60px;
  }
}
.p-top__know__uppericon {
  width: 88px;
  position: absolute;
  right: 15px;
  top: 150px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-top__know__uppericon {
    max-width: 173px;
    width: 12%;
    position: absolute;
    right: 60px;
    top: 180px;
  }
}
.p-top__know__lowericon {
  width: 100px;
  position: absolute;
  left: 20px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-top__know__lowericon {
    max-width: 205px;
    width: 15%;
  }
}
.p-top__know__content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-top__know__content {
    margin-top: 100px;
  }
}
.p-top__know__ttl {
  text-align: center;
  position: relative;
  z-index: 10;
}
.p-top__know__item {
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 20px;
}
.p-top__know__item__ttltext {
  position: absolute;
  bottom: 16px;
  left: 10px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top__know__item__ttltext {
    bottom: 32px;
    left: 18px;
  }
}
.p-top__know__item__ttltext--num {
  position: absolute;
  bottom: 16px;
  left: 10px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top__know__item__ttltext--num {
    bottom: 12px;
    left: 18px;
  }
}
.p-top__know__item__ttltext__body {
  font-size: clamp(1rem, 2.32vw, 1.625rem);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.69px;
  padding: 8px 6px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-top__know__item__ttltext__body {
    padding: 13px 10px;
    margin-bottom: 10px;
  }
}
.p-top__know__item__ttltext__body:last-of-type {
  margin-bottom: 0;
}
.p-top__know__item__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top__know__item__icon {
    position: absolute;
    bottom: 20px;
    right: 18px;
  }
}
.p-top__know__item__icon img {
  pointer-events: none;
}
.p-top__work__upper {
  width: 100%;
  position: relative;
  isolation: isolate;
}
.p-top__work__upper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, #E7E9F1 70%, #F6F7F0 100%);
  background: linear-gradient(180deg, transparent 0%, #E7E9F1 70%, var(--base, #F6F7F0) 100%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top__work__upper::before {
    right: 86px;
  }
}
.p-top__work__upper__icon {
  width: 68px;
  position: absolute;
  top: 35%;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .p-top__work__upper__icon {
    max-width: 171px;
    width: 12%;
    position: absolute;
    top: 50%;
    right: 60px;
  }
}
.p-top__work__autoslide {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .p-top__work__autoslide {
    width: 100%;
  }
}
.p-top__work__main {
  margin: 20px auto 0;
  max-width: 740px;
  width: calc(100% - 30px);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__work__main {
    margin: 80px auto 0;
    width: 95%;
  }
}
.p-top__work__main__ttl {
  text-align: center;
  margin-bottom: 40px;
}
.p-top__work__main__text > p {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 200%; /* 40px */
  letter-spacing: 0.8px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-top__work__main__text > p {
    font-size: 1.25rem;
    font-weight: 700;
    font-weight: var(--base-font-bold);
    text-align: center;
  }
}
.p-top__work__business {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-top__work__business {
    margin-top: 100px;
  }
}
.p-top__work__business__ttl {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-top__work__business__ttl {
    margin-bottom: 32px;
  }
}
.p-top__work__business__item {
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 20px;
}
.p-top__work__business__item__ttltext {
  position: absolute;
  bottom: 10px;
  left: 10px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top__work__business__item__ttltext {
    bottom: 24px;
    left: 20px;
  }
}
.p-top__work__business__item__ttltext__body {
  font-size: clamp(0.875rem, 2.32vw, 1.625rem);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 1.04px;
  padding: 8px 6px;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .p-top__work__business__item__ttltext__body {
    padding: 8px;
    margin-bottom: 16px;
    letter-spacing: 0.56px;
  }
}
.p-top__work__business__item__ttltext__body:last-of-type {
  margin-bottom: 0;
}
.p-top__work__business__item__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top__work__business__item__icon {
    position: absolute;
    bottom: 18px;
    right: 18px;
  }
}
.p-top__work__business__item__icon img {
  pointer-events: none;
}
.p-top__work__story {
  margin-top: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__work__story {
    margin-top: 100px;
  }
}
.p-top__work__story--single {
  max-width: 740px;
  margin: auto;
  position: relative;
  padding: 0 15px;
  z-index: 10;
}
.p-top__work__story__icon {
  max-width: 252px;
  width: 127px;
  position: absolute;
  z-index: 5;
  top: -40px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-top__work__story__icon {
    max-width: 252px;
    width: 18%;
    position: absolute;
    z-index: 5;
    top: -90px;
    left: 40px;
  }
}
.p-top__work__story__ttl {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__work__story__ttl {
    margin-bottom: 32px;
  }
}
.p-top__work__storyslide {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__work__storyslide {
    width: calc(100% - 180px);
    margin-left: auto;
  }
}
.p-top__work__listbtn {
  margin: 24px auto 0;
}
.p-top__work__listbtn > a {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  letter-spacing: 0.64px;
  line-height: 120%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__work__listbtn > a {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}
.p-top__human {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-top__human {
    margin-top: 200px;
  }
}
.p-top__human__ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-top__human__ttl {
    margin-bottom: 100px;
  }
}
.p-top__human__introductionslide .splide__track {
  max-width: 992px;
  margin: auto;
}
.p-top__human__introductionwrap {
  position: relative;
  z-index: 10;
  background: radial-gradient(50% 50% at 50% 50%, #F9EFED 50%, #F6F7F0 100%);
}
.p-top__human__meetingwrap {
  position: relative;
  z-index: 10;
  padding: 0 15px;
}
.p-top__human__upbficon {
  width: 83px;
  position: absolute;
  top: -95px;
  left: 10px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-top__human__upbficon {
    max-width: 140px;
    width: 10%;
    position: absolute;
    top: 0;
    left: 80px;
    z-index: 5;
  }
}
.p-top__human__upaficon {
  width: 107px;
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-top__human__upaficon {
    max-width: 251px;
    width: 17%;
    position: absolute;
    top: 53px;
    right: 70px;
    z-index: 5;
  }
}
.p-top__human__downbficon--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top__human__downbficon--pc {
    display: block;
    max-width: 230px;
    width: 16%;
    position: absolute;
    bottom: -100px;
    left: 57px;
    z-index: 5;
  }
}
.p-top__human__downbficon--sp {
  display: block;
  width: 125px;
  position: absolute;
  bottom: -100px;
  right: 0;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-top__human__downbficon--sp {
    display: none;
  }
}
.p-top__human__introduction {
  max-width: 1120px;
  width: 100%;
  margin: 40px auto 0;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__human__introduction {
    margin: 100px auto 0;
  }
}
.p-top__human__introduction__ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-top__human__introduction__ttl {
    margin-bottom: 24px;
  }
}
.p-top__human__listbtn {
  position: relative;
  margin: 80px auto 0;
}
.p-top__human__listbtn__icon {
  width: 30%;
  position: absolute;
  top: -96px;
  left: -15px;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-top__human__listbtn__icon {
    width: 230px;
    position: absolute;
    top: -145px;
    left: -200px;
    z-index: 50;
  }
}
.p-top__human__listbtn > a {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.64px;
  line-height: 120%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__human__listbtn > a {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}
.p-top__human__meeting {
  margin: 60px auto 200px;
  max-width: 740px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__human__meeting {
    margin: 100px auto 200px;
  }
}
.p-top__human__meeting__ttl {
  text-align: center;
  margin-bottom: 24px;
}
.p-top__human__meeting__link {
  font-size: 1.125rem;
  color: #3E2214;
  color: var(--text-color);
  line-height: 100%; /* 18px */
  letter-spacing: 0.72px;
}
.p-top__human__meeting__item {
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 20px;
}
.p-top__human__meeting__item__ttltext {
  position: absolute;
  bottom: 12px;
  left: 12px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top__human__meeting__item__ttltext {
    bottom: 24px;
    left: 32px;
  }
}
.p-top__human__meeting__item__ttltext__body {
  font-size: clamp(0.875rem, 1.79vw, 1.25rem);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 8px 6px;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  .p-top__human__meeting__item__ttltext__body {
    padding: 8px;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
  }
}
.p-top__human__meeting__item__ttltext__body:last-of-type {
  margin-bottom: 0;
}
.p-top__human__meeting__item__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top__human__meeting__item__icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
  }
}
.p-top__human__meeting__item__icon img {
  pointer-events: none;
}
.p-top__human__meeting__icon {
  max-width: 200px;
  width: 80px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: -100px;
  left: 15px;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-top__human__meeting__icon {
    width: 14%;
    position: absolute;
    top: 0;
    right: 75px;
    bottom: auto;
    left: auto;
  }
}
.p-top__workknow {
  margin-bottom: 100px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__workknow {
    margin-bottom: 200px;
  }
}
.p-top__workknow__iconbf {
  max-width: 165px;
  width: 104px;
  position: absolute;
  top: 200px;
  left: auto;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__iconbf {
    width: 12%;
    position: absolute;
    top: 0;
    left: 48px;
    right: auto;
  }
}
.p-top__workknow__iconaf {
  max-width: 204px;
  width: 82px;
  position: absolute;
  top: -60px;
  right: -10px;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__iconaf {
    width: 15%;
    position: absolute;
    top: -25%;
    right: 72px;
  }
}
.p-top__workknow__ttl {
  margin: -55px auto 40px;
  text-align: center;
}
.p-top__workknow__ttl__icon {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__ttl {
    margin: -30px auto 40px;
    text-align: center;
  }
}
.p-top__workknow__text {
  color: #3E2214;
  color: var(--text-color);
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 40px */
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__text {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 700;
    font-weight: var(--base-font-bold);
    line-height: 200%; /* 40px */
    letter-spacing: 0.8px;
  }
}
.p-top__workknow__main {
  max-width: 1120px;
  border-radius: 20px;
  margin: auto;
  background: linear-gradient(180deg, #E2F0CD 0%, rgba(246, 247, 240, 0) 100%);
  display: flow-root;
}
.p-top__workknow__textblock {
  padding: 0 15px;
  position: relative;
  z-index: 12;
}
.p-top__workknow__linkblock {
  gap: 50px;
  max-width: 785px;
  margin: 40px auto 0;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__linkblock {
    gap: 100px;
  }
}
.p-top__workknow__linkblock__item--teach {
  display: flex;
  align-items: center;
}
.p-top__workknow__linkblock__item--welfare {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__linkblock__item--welfare {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.p-top__workknow__linkblock__item__img--teach {
  max-width: 200px;
  margin-right: -55px;
  z-index: 13;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__linkblock__item__img--teach {
    max-width: 230px;
    margin-right: -55px;
    z-index: 13;
  }
}
.p-top__workknow__linkblock__item__img--welfare {
  max-width: 170px;
  margin-right: -25px;
  z-index: 13;
}
@media screen and (min-width: 768px) {
  .p-top__workknow__linkblock__item__img--welfare {
    max-width: 185px;
    margin-right: -25px;
    z-index: 13;
  }
}
.p-top__workknow__linkblock__item__body {
  position: relative;
  z-index: 12;
}
.p-top__workknow__linkblock__item__body__link {
  min-width: 170px;
  min-height: 170px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #D5E8B5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #3E2214;
  color: var(--text, #3E2214);
}
@media screen and (min-width: 768px) {
  .p-top__workknow__linkblock__item__body__link {
    min-width: 180px;
    min-height: 180px;
  }
}
.p-top__workknow__linkblock__item__body__text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: 0.96px;
}
.p-top__workknow__linkblock__item__body__icon {
  width: 36px;
  height: 36px;
  margin-top: 10px;
}
.p-top__comingsoon {
  max-width: 500px;
  width: 90%;
  margin: 64px auto 0;
}
@media screen and (min-width: 768px) {
  .p-top__comingsoon {
    width: 100%;
  }
}

.p-top__work__autoslide .splide__track {
  padding-top: 70px;
  padding-bottom: 70px;
  pointer-events: none;
}

/* 各アイテムの縦位置を個別に調整 */
.p-top__work__autoslide__item01 {
  transform: translateY(0px);
}

.p-top__work__autoslide__item02 {
  transform: translateY(-70px);
}

.p-top__work__autoslide__item03 {
  transform: translateY(60px);
}

.p-top__work__autoslide__item04 {
  transform: translateY(-70px);
}

.p-top__work__autoslide__item05 {
  transform: translateY(10px);
}

.p-top__work__autoslide__item06 {
  transform: translateY(-70px);
}

.p-top__work__autoslide .splide__slide img {
  border-radius: 8px;
}

.p-top__work__storyslide {
  --story-slide-scale: 0.94;
  --story-slide-offset: -6%;
}
@media screen and (max-width: 767px) {
  .p-top__work__storyslide {
    --story-slide-scale: 0.94;
    --story-slide-offset: 0;
  }
}
.p-top__work__storyslide .splide__list {
  align-items: flex-start;
}
.p-top__work__storyslide .splide__slide {
  transition: opacity 0.4s ease;
  flex-shrink: 0;
  opacity: 0.8;
}
.p-top__work__storyslide .slide-inner {
  transition: transform 0.4s ease;
  transform: translateZ(0) scale(var(--story-slide-scale));
  transform-origin: left center;
  will-change: transform;
  backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  .p-top__work__storyslide .slide-inner {
    transform-origin: center center;
  }
}
.p-top__work__storyslide .slide-inner img {
  width: 100%;
  height: auto;
  display: block;
}
.p-top__work__storyslide .splide__slide.is-active {
  opacity: 1;
  flex-shrink: 0;
}
.p-top__work__storyslide .splide__slide.is-active .slide-inner {
  transform: translateZ(0) scale(1);
}
.p-top__work__storyslide .splide__slide.is-active + .splide__slide + .splide__slide .slide-inner {
  transform: translateZ(0) translateX(var(--story-slide-offset)) scale(var(--story-slide-scale));
}
.p-top__work__storyslide .slide-caption {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 150%; /* 21px */
  letter-spacing: 0.64px;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #3E2214;
  color: var(--text-color);
}
@media screen and (max-width: 767px) {
  .p-top__work__storyslide .slide-caption {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: 0.56px;
  }
}
.p-top__work__storyslide .splide__slide.is-active .slide-caption {
  opacity: 1;
}

.p-top__work__storyslide, .p-top__human__introductionslide {
  /* 矢印ボタンのスタイル */
}
.p-top__work__storyslide .splide__arrow, .p-top__human__introductionslide .splide__arrow {
  position: static !important;
  transform: none !important;
  width: 48px;
  height: 48px;
  opacity: 1;
}
.p-top__work__storyslide, .p-top__human__introductionslide {
  /* 再生・停止ボタン */
}
.p-top__work__storyslide .play-pause-btn, .p-top__human__introductionslide .play-pause-btn {
  width: 30px;
  height: 30px;
  background: #5d3523;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.p-top__work__storyslide .play-icon, .p-top__human__introductionslide .play-icon {
  display: none;
}
.p-top__work__storyslide .play-pause-btn.is-paused .pause-icon, .p-top__human__introductionslide .play-pause-btn.is-paused .pause-icon {
  display: none;
}
.p-top__work__storyslide .play-pause-btn.is-paused .play-icon, .p-top__human__introductionslide .play-pause-btn.is-paused .play-icon {
  display: inline;
}

/* --- コントロール類のグループ化 --- */
.p-top__story__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 15px;
  max-width: 1120px;
  width: 100%;
  margin: 30px auto 0;
}

/* --- コントロール類のグループ化 --- */
.p-top__human__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 15px;
}

.p-top__story__controls .splide__pagination, .p-top__human__controls .splide__pagination {
  position: relative !important;
  bottom: 0 !important;
  left: 0 !important;
  transform: none !important;
}

.p-top__story__controls .splide__arrows, .p-top__human__controls .splide__arrows {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top__story__controls .splide__arrows, .p-top__human__controls .splide__arrows {
    display: flex;
    gap: 10px;
    align-items: center;
  }
}

.p-top__human__introductionslide .splide__pagination {
  display: block !important;
}

.p-top__human__introductionslide .slide-decoration {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  /* 表示の切り替え設定 */
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.p-top__human__introductionslide .slide-decoration img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top__human__introductionslide .splide__slide.is-active .slide-decoration {
  opacity: 1;
}

.p-top__human__introductionslide .splide__list {
  align-items: center;
}

.p-top__human__introductionslide .splide__slide {
  transition: opacity 0.4s ease;
  z-index: 11;
  transition: all 0.3s ease;
  backface-visibility: hidden;
  aspect-ratio: contain;
}

.p-top__human__introductionslide .slide-inner {
  position: relative;
  transform: scale(0.9);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

.p-top__human__introductionslide .slide-media {
  position: relative;
}

.p-top__human__introductionslide .slide-media__image {
  overflow: hidden;
  border-radius: 10px;
}

.p-top__human__introductionslide .slide-media__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(105, 51, 24, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 10px;
}

.p-top__human__introductionslide .splide__slide.is-next .slide-media__image::after,
.p-top__human__introductionslide .splide__slide.is-prev .slide-media__image::after {
  opacity: 1;
}

/* --- 中央（アクティブ）のスライド --- */
.p-top__human__introductionslide .splide__slide.is-active {
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 2;
}

.p-top__human__introductionslide .splide__slide.is-active .slide-inner {
  transform: scale(1);
}

.p-top__human__introductionslide .splide__slide.is-prev .slide-inner {
  transform-origin: right center;
}

/* 画像自体の角丸や枠線の調整 */
.p-top__human__introductionslide .slide-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; /* お好みで */
}

.p-top__human__introductionslide .slide-caption {
  opacity: 0;
}
.p-top__human__introductionslide .slide-inner a {
  color: #3E2214;
  color: var(--text-color);
}
.p-top__human__introductionslide .splide__slide.is-active .slide-caption {
  opacity: 1;
  margin-top: 28px;
}

.p-top__human__introductionslide__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.p-top__human__introductionslide__tag li {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.7px;
  padding: 4px 8px;
  border-radius: 5px;
}

.p-top__human__introductionslide__name {
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
}

.splide__slide:not(.is-active) a {
  pointer-events: none;
  cursor: default;
}

.p-training {
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-training {
    margin: 64px auto 128px;
  }
}
.p-training__lead {
  margin-bottom: 64px;
}
.p-training__subitem {
  margin: 24px auto 40px;
}
@media screen and (min-width: 768px) {
  .p-training__subitem {
    margin: 32px auto 40px;
  }
}
.p-training__subitem__ttl {
  margin-bottom: 24px;
}
.p-training__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-training__ttl {
    margin-bottom: 32px;
  }
}
.p-training__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
.p-training__career__flowimg {
  gap: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-training__career__flowimg {
    gap: 94px;
  }
}
@media screen and (min-width: 768px) {
  .p-training__flow {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr;
    gap: 16px 56px;
  }
}
.p-training__flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-training__flow__item {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    height: auto;
  }
  .p-training__flow__item:before {
    background: url(../images/common/icon_nextarrow.svg) no-repeat center/contain;
    content: "";
    height: 48px;
    margin: auto;
    position: absolute;
    right: -42px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
  }
  .p-training__flow__item:before:last-of-type {
    background: none;
  }
}
.p-training__flow__body {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-radius: 0 0 10px 10px;
}
.p-training__flow__textblock {
  padding: 10px 20px 24px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-training__flow__textblock__ttl {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-training__flow__textblock__ttl {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
  }
}
.p-training__flow__textblock__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .p-training__flow__textblock__text {
    line-height: 150%;
  }
}
.p-training__flow__step, .p-training__flow__step--03, .p-training__flow__step--02, .p-training__flow__step--01 {
  border-radius: 10px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-training__flow__step, .p-training__flow__step--03, .p-training__flow__step--02, .p-training__flow__step--01 {
    margin-bottom: 0;
  }
}
.p-training__flow__step__text {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.72px;
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .p-training__flow__step__text {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-training__flow__step--01 {
  background-color: #F8A954;
  position: relative;
}
.p-training__flow__step--01::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: 7px solid #F8A954;
}
.p-training__flow__step--02 {
  background-color: #F79933;
  position: relative;
}
.p-training__flow__step--02::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: 7px solid #F79933;
}
.p-training__flow__step--03 {
  background-color: #F57F00;
  position: relative;
}
.p-training__flow__step--03::before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top: 7px solid #F57F00;
}
.p-training__flow__img {
  position: relative;
  line-height: 0;
}
.p-training__flow__img::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 8/1;
  background: url("../images/career/training/img_half-circle.png") no-repeat bottom center;
  background-size: 100% auto;
}
.p-training__support__content {
  display: block;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-training__support__content {
    display: flex;
    align-items: flex-start; /* これがないと左側が親と同じ高さまで伸びてしまい動きません */
    gap: 32px;
  }
}
.p-training__support__content__ttl {
  position: static;
  width: 100%; /* 任意の横幅 */
}
@media screen and (min-width: 768px) {
  .p-training__support__content__ttl {
    position: sticky;
    top: 110px;
    width: 40%;
  }
}
.p-training__support__content__ttl__img {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-training__support__content__ttl__img {
    margin-top: 30px;
  }
}
.p-training__support__content__main {
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
  .p-training__support__content__main {
    margin: 120px 0 0 0;
    flex: 1;
    width: calc(60% - 32px);
  }
}
.p-training__support__content__main__item {
  margin-bottom: 40px;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .p-training__support__content__main__item {
    padding: 32px;
    margin-bottom: 32px;
  }
}
.p-training__support__content__main__item:last-of-type {
  margin-bottom: 0;
}
.p-training__support__content__main__item__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  margin-bottom: 1rem;
}
.p-training__support__content__main__item__text:last-of-type {
  margin-bottom: 0;
}
.p-training__support__content__main__item__strongtext {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-training__support__content__main__item__strongtext {
    text-align: left;
  }
}
.p-training__support__content__main__item__strongtext span {
  font-size: 0.875rem;
  letter-spacing: 0.56px;
}
.p-training__support__content__main__item__col {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-training__support__content__main__item__col {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.p-training__support__content__main__item__col__icon {
  width: 120px;
  height: 120px;
}
@media screen and (min-width: 768px) {
  .p-training__support__content__main__item__col__icon {
    width: 90px;
    height: 90px;
  }
}
.p-training__support__content__main__item__col__ttlblock, .p-training__support__content__main__item__col__ttlblock--pink, .p-training__support__content__main__item__col__ttlblock--blue, .p-training__support__content__main__item__col__ttlblock--yellow {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 150%; /* 30px */
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-training__support__content__main__item__col__ttlblock, .p-training__support__content__main__item__col__ttlblock--pink, .p-training__support__content__main__item__col__ttlblock--blue, .p-training__support__content__main__item__col__ttlblock--yellow {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    text-align: left;
  }
}
.p-training__support__content__main__item__col__ttlblock--yellow {
  color: #F57F00;
  color: var(--main-color);
}
.p-training__support__content__main__item__col__ttlblock--blue {
  color: #3368A5;
}
.p-training__support__content__main__item__col__ttlblock--pink {
  color: #E5334C;
}
.p-training__support__tanekoko {
  margin-bottom: 40px;
}
.p-training__support__linkblock {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 936px;
  width: 100%;
  margin: 0 auto 64px;
}
@media screen and (min-width: 768px) {
  .p-training__support__linkblock {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-training__support__linkblock--single {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 450px;
  width: 100%;
  margin: 0 auto 64px;
}
.p-training__support__linkblock__item {
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 20px;
}
.p-training__support__linkblock__item__ttltext {
  position: absolute;
  bottom: 12px;
  left: 12px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-training__support__linkblock__item__ttltext {
    bottom: 24px;
    left: 32px;
  }
}
.p-training__support__linkblock__item__ttltext__body {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 1.07px;
  padding: 8px 6px;
}
@media screen and (min-width: 768px) {
  .p-training__support__linkblock__item__ttltext__body {
    padding: 10px 8px;
    letter-spacing: 1.07px;
  }
}
.p-training__support__linkblock__item__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-training__support__linkblock__item__icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
  }
}
.p-training__support__linkblock__item__icon img {
  pointer-events: none;
}
.p-training__skill {
  margin-bottom: 64px;
}
.p-training__skill__content__col {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 24px;
  gap: 16px 24px;
  grid-template-rows: auto 1fr;
}
@media screen and (min-width: 768px) {
  .p-training__skill__content__col {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 32px;
  }
}
.p-training__skill__content__col__item {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
}
.p-training__skill__tanekoko {
  margin-top: 24px;
}
.p-training__tanekoko, .p-training__tanekoko--rev {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.p-training__tanekoko--rev {
  flex-direction: row-reverse;
}
.p-training__tanekoko__img {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .p-training__tanekoko__img {
    width: 200px;
    height: 200px;
  }
}
.p-training__tanekoko__text {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .p-training__tanekoko__text {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
  }
}
.p-training__evaluation__content__box__ttl {
  margin-bottom: 16px;
}
.p-training__evaluation__content__box__text {
  margin-bottom: 1rem;
}
.p-training__evaluation__content__box__text:last-of-type {
  margin-bottom: 0;
}

.p-training__flowwrap .splide__pagination {
  position: relative;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.p-training__flowwrap .splide__track {
  display: flex;
}
.p-training__flowwrap .splide__list {
  display: flex;
}
.p-training__flowwrap .splide__slide {
  height: auto;
}

.p-welfare {
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-welfare {
    margin: 64px auto 128px;
  }
}
.p-welfare__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-welfare__ttl {
    margin-bottom: 32px;
  }
}
.p-welfare__lead {
  margin-bottom: 64px;
}
.p-welfare__content {
  margin-bottom: 64px;
}
.p-welfare__subcontent {
  margin-bottom: 40px;
}
.p-welfare__subcontent__ttl {
  margin-bottom: 8px;
}
.p-welfare__subcontent__leadtext {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-welfare__subcontent__leadtext {
    margin-bottom: 32px;
  }
}
.p-welfare__col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-welfare__col {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 992px) {
  .p-welfare__col {
    gap: 16px 32px;
  }
}
.p-welfare__col__item {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: 8px;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .p-welfare__col__item {
    padding: 24px;
  }
}
@media screen and (min-width: 992px) {
  .p-welfare__col__item {
    padding: 24px 32px;
  }
}
.p-welfare__col__ttlwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.p-welfare__col__ttl {
  color: #F57F00;
  color: var(--main-color);
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 130%; /* 26px */
  letter-spacing: 0.8px;
}
.p-welfare__col__icon {
  width: 66px;
  height: 66px;
}
.p-welfare__col__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 21px */
  letter-spacing: 0.56px;
}
.p-welfare__imgcol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-welfare__imgcol {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
}
.p-welfare__imgcol__imgitem {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-welfare__imgcol__imgitem {
    max-width: 448px;
  }
}
.p-welfare__imgcol__textitem {
  width: 100%;
}
.p-welfare__imgcol__textitem {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 21px */
  letter-spacing: 0.56px;
}
.p-welfare__annotation {
  margin-top: 8px;
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 100%;
  letter-spacing: 0.56px;
}
.p-welfare__description {
  margin-bottom: 24px;
}
.p-welfare__description:last-of-type {
  margin-bottom: 0;
}
.p-welfare__description__ttl {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.64px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-welfare__description__ttl {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
  }
}
.p-welfare__description__text {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%;
  letter-spacing: 0.64px;
}
.p-welfare__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 16px;
}
@media screen and (min-width: 768px) {
  .p-welfare__box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
  }
}
@media screen and (min-width: 992px) {
  .p-welfare__box {
    padding: 24px 40px;
  }
}
.p-welfare__box__img {
  max-width: 260px;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-welfare__box__img {
    max-width: 300px;
    width: 100%;
  }
}
.p-welfare__box__ttl {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 30px */
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-welfare__box__ttl {
    font-size: 1.5rem;
    text-align: left;
    letter-spacing: 0.96px;
  }
}
.p-welfare__box__text p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 21px */
  letter-spacing: 0.56px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-welfare__box__text p {
    font-size: 1rem;
    text-align: left;
    line-height: 175%;
    letter-spacing: 0.64px;
  }
}
.p-welfare__box__annotation {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-welfare__box__annotation {
    text-align: left;
  }
}

.p-work {
  margin: 64px auto;
}
@media screen and (min-width: 768px) {
  .p-work {
    margin: 64px auto 128px;
  }
}
.p-work__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-work__ttl {
    margin-bottom: 32px;
  }
}
.p-work__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.p-work__list.detail {
  max-width: 1120px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-work__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
}
.p-work__list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-work__list__item {
    gap: 12px;
  }
}
.p-work__list__item__img {
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 20px;
}
.p-work__list__item__img__ttltext, .p-work__list__item__img__ttltextmin {
  position: absolute;
  bottom: 10px;
  left: 9px;
  right: 56px;
  pointer-events: none;
  max-width: calc(100% - 65px);
}
@media screen and (min-width: 768px) {
  .p-work__list__item__img__ttltext, .p-work__list__item__img__ttltextmin {
    bottom: 16px;
    left: 14px;
    right: 92px;
    max-width: calc(100% - 106px);
  }
}
.p-work__list__item__img__ttltext__body {
  font-size: 0.875rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 7px 5px;
  margin-bottom: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-work__list__item__img__ttltext__body {
    font-size: clamp(0.875rem, 1.79vw, 1.25rem);
    padding: 12px 8px;
    margin-bottom: 13px;
    letter-spacing: 0.9px;
  }
}
.p-work__list__item__img__ttltext__body:last-of-type {
  margin-bottom: 0;
}
.p-work__list__item__img__ttltextmin__body {
  font-size: 0.75rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.44px;
  padding: 6px 4px;
  margin-bottom: 6px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-work__list__item__img__ttltextmin__body {
    font-size: clamp(0.75rem, 1.55vw, 1.25rem);
    padding: 10px 7px;
    margin-bottom: 10px;
    letter-spacing: 0.68px;
  }
}
.p-work__list__item__img__ttltextmin__body:last-of-type {
  margin-bottom: 0;
}
.p-work__list__item__img__ttlimg {
  position: absolute;
  bottom: 10px;
  left: 9px;
  right: 56px;
  pointer-events: none;
  max-width: calc(100% - 65px);
}
@media screen and (min-width: 768px) {
  .p-work__list__item__img__ttlimg {
    bottom: 16px;
    left: 14px;
    right: 92px;
    max-width: min(clamp(226px, 31vw, 415px), 100% - 106px);
  }
}
.p-work__list__item__img__ttlimg img {
  display: block;
  width: 100%;
}
.p-work__list__item__img__icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-work__list__item__img__icon {
    position: absolute;
    bottom: 24px;
    right: 28px;
  }
}
.p-work__list__item__img__icon img {
  pointer-events: none;
}
.p-work__list__item__tag {
  display: inline-block;
}
.p-work__list__item__tag > li {
  font-size: 0.75rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 12px */
  letter-spacing: 0.6px;
  padding: 4px 6px;
  display: inline-flex;
  gap: 8px;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .p-work__list__item__tag > li {
    font-size: 0.875rem;
    letter-spacing: 0.7px;
    padding: 4px 8px;
  }
}
.p-work__list__item__name {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-work__list__item__name {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    line-height: 100%;
  }
}
.p-work__detail {
  overflow: visible;
  margin: 24px auto 0;
}
.p-work__detail__content {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__content {
    margin-bottom: 64px;
  }
}
.p-work__detail__content__bubbleitem {
  max-width: 850px;
  width: 100%;
  display: block;
  margin: 36px auto 0;
}
@media screen and (min-width: 768px) {
  .p-work__detail__content__bubbleitem {
    margin: 32px auto 0;
  }
}
.p-work__detail__content__textblock {
  margin-bottom: 1rem;
}
.p-work__detail__content__textblock:last-of-type {
  margin-bottom: 0;
}
.p-work__detail__content__textblock > p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 175%; /* 28px */
  letter-spacing: 0.64px;
}
.p-work__detail__content__col, .p-work__detail__content__col--rev {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__content__col, .p-work__detail__content__col--rev {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-work__detail__content__col--rev {
    flex-direction: row-reverse;
  }
}
.p-work__detail__content__col__textitem {
  width: 100%;
}
.p-work__detail__content__col__imgitem {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work__detail__content__col__imgitem {
    width: 100%;
    max-width: 448px;
  }
}
.p-work__detail__ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__ttl {
    margin-bottom: 32px;
  }
}
.p-work__detail__tag {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-work__detail__tag {
    margin-top: 16px;
    gap: 16px;
  }
}
.p-work__detail__tag > li {
  font-size: 0.75rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%; /* 12px */
  letter-spacing: 0.6px;
  padding: 4px 6px;
  display: inline-block;
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__tag > li {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    padding: 8px 12px;
  }
}
.p-work__detail__main__imgwrap {
  margin: 24px auto 64px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__main__imgwrap {
    margin: 24px auto 80px;
  }
}
.p-work__detail__main__img {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-work__detail__main__img {
    width: 100%;
    margin: 0 auto;
  }
}
.p-work__detail__main__img__textblock {
  position: absolute;
  bottom: 12px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__main__img__textblock {
    bottom: 24px;
    left: 24px;
  }
}
.p-work__detail__main__img__maintext {
  color: #3E2214;
  color: var(--text-color);
  background-color: #fff;
  font-size: clamp(1rem, 3.57vw, 2.5rem);
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.64px;
  margin-bottom: 6px;
  padding: 8px 6px;
  display: table;
}
@media screen and (min-width: 768px) {
  .p-work__detail__main__img__maintext {
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    padding: 24px 16px;
  }
}
.p-work__detail__main__img__nametext {
  background: linear-gradient(90deg, #F79933 0%, #E5334C 100%);
  font-size: clamp(0.875rem, 2.5vw, 1.75rem);
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 100%;
  letter-spacing: 0.56px;
  padding: 8px 6px;
  display: table;
}
@media screen and (min-width: 768px) {
  .p-work__detail__main__img__nametext {
    letter-spacing: 1.12px;
    padding: 24px 18px;
  }
}
.p-work__detail__movie {
  background-color: #E6ECF4;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 24px 15px;
  position: relative;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie {
    padding: 0 15px 0;
    margin-top: 140px;
  }
}
.p-work__detail__movie__icon01 {
  width: 115px;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__icon01 {
    width: 26%;
    top: 40px;
    right: -10px;
    z-index: 1;
  }
}
.p-work__detail__movie__icon02 {
  width: 67px;
  position: absolute;
  top: 35px;
  left: 27px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__icon02 {
    width: 13.75%;
    top: 120px;
    left: 8%;
    z-index: 1;
  }
}
.p-work__detail__movie__icon03 {
  width: 110px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__icon03 {
    width: 18%;
    top: 0;
    right: 7%;
    z-index: 1;
  }
}
.p-work__detail__movie__icon04 {
  width: 57px;
  position: absolute;
  right: 6px;
  bottom: -10px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__icon04 {
    width: 9.375%;
    right: 11%;
    bottom: -10px;
    z-index: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__mainwrap {
    position: relative; /* 　今回のメインテーマ  */
    margin-top: -60px; /*  今回のメインテーマ   */
    top: 60px;
  }
}
.p-work__detail__movie__main {
  margin: 0 auto;
}
.p-work__detail__movie__mainimg {
  width: 100%;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__mainimg {
    width: 56%;
    margin: auto;
  }
}
.p-work__detail__movie__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-work__detail__movie__trigger:hover {
  opacity: 0.9;
  transition: all 0.3s ease;
}
.p-work__detail__movie__trigger:focus-visible {
  outline: 3px solid #F57F00;
  outline: 3px solid var(--main-color);
  outline-offset: 4px;
}
.p-work__detail__movie__trigger img {
  display: block;
  width: 100%;
  height: auto;
}
.p-work__detail__movie__trigger::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.32) 100%);
  content: "";
}
.p-work__detail__movie__triggericon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__triggericon {
    width: 96px;
    height: 96px;
  }
}
.p-work__detail__movie__triggericon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #F57F00;
  border-left: 20px solid var(--main-color);
  content: "";
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__triggericon::before {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 24px;
  }
}
.p-work__detail__movie__ttl {
  color: #3E2214;
  color: var(--text-color);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 30px */
  letter-spacing: 0.8px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movie__ttl {
    font-size: 1.75rem;
    line-height: 100%; /* 28px */
    letter-spacing: 1.12px;
    margin-bottom: 40px;
  }
}
.p-work__detail__movieModal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  z-index: var(--z-modal);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-work__detail__movieModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-work__detail__movieModal__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 24, 40, 0.78);
  cursor: pointer;
}
.p-work__detail__movieModal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  padding: 48px 12px 12px;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movieModal__dialog {
    padding: 56px 16px 16px;
  }
}
.p-work__detail__movieModal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background-color: #000;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-work__detail__movieModal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}
.p-work__detail__movieModal__close::before, .p-work__detail__movieModal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: #fff;
  content: "";
}
.p-work__detail__movieModal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-work__detail__movieModal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-work__detail__movieModal__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 12px;
  background-color: #000;
}
.p-work__detail__schedulewrap {
  margin: 80px auto 64px;
  border-radius: 10px;
  background: linear-gradient(180deg, #F9B770 0%, #FCD7B0 100%);
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedulewrap {
    margin: 140px auto 80px;
  }
}
.p-work__detail__scheduleinner, .p-work__detail__scheduleinner--04 {
  background-color: #fff;
  padding: 40px 10px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__scheduleinner, .p-work__detail__scheduleinner--04 {
    padding: 40px 60px 40px 130px;
  }
}
.p-work__detail__scheduleinner--04 {
  padding: 40px 10px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__scheduleinner--04 {
    padding: 40px 20px 40px 130px;
  }
}
.p-work__detail__schedule {
  padding: 8px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule {
    padding: 40px 60px 0;
  }
}
.p-work__detail__schedule__main {
  position: relative;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule__main {
    margin-top: 32px;
  }
}
.p-work__detail__schedule__main ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.p-work__detail__schedule__main ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.p-work__detail__schedule__main ul li:not(:last-child)::before {
  position: absolute;
  top: 12px;
  bottom: -2em;
  left: 4.55em;
  width: 4px;
  background-color: #F8A954;
  content: "";
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule__main ul li:not(:last-child)::before {
    left: 5em;
  }
}
.p-work__detail__schedule__main ul li + li {
  margin-top: 2em;
}
.p-work__detail__schedule__mainttl {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 100%; /* 24px */
  letter-spacing: 0.96px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule__mainttl {
    font-size: 2rem;
    letter-spacing: 1.28px;
  }
}
.p-work__detail__schedule__time {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 3em;
  color: #F79933;
  text-align: center;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule__time {
    font-size: 1.25rem;
    letter-spacing: 0.72px;
  }
}
.p-work__detail__schedule__time::after {
  position: absolute;
  top: 50%;
  left: 3.5em;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 6px solid #F57F00;
  border: 6px solid var(--main-color);
  border-radius: 50%;
  background-color: #fff;
  z-index: 10;
  content: "";
}
.p-work__detail__schedule__content {
  margin: 0px 0px 0px 3em;
  width: calc(100% - 7em);
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule__content {
    width: calc(100% - 10em);
  }
}
.p-work__detail__schedule__content__title {
  font-weight: 700;
  font-weight: var(--base-font-bold);
  color: #F57F00;
  color: var(--main-color);
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule__content__title {
    font-size: 1.25rem;
    letter-spacing: 0.72px;
  }
}
.p-work__detail__schedule__content__detail p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 150%; /* 27px */
  letter-spacing: 0.72px;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__schedule__content__detail p {
    font-size: 1.125rem;
    letter-spacing: 0.64px;
  }
}
.p-work__detail__step {
  margin-top: 40px;
  padding: 0 8px 16px 8px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__step {
    margin-top: 64px;
    padding: 0;
  }
}
.p-work__detail__step__ttl {
  color: #F57F00;
  color: var(--main-color);
  text-align: center;
  text-shadow: 1px 2px 0 #FFF;
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 120%; /* 31.2px */
  letter-spacing: 1.04px;
  padding: 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__step__ttl {
    margin-top: 64px;
    padding: 0 60px;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 36px;
  }
}
.p-work__detail__messagewrap {
  position: relative;
  margin-top: 50px;
  padding-bottom: 128px;
}
@media screen and (min-width: 576px) {
  .p-work__detail__messagewrap {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-work__detail__messagewrap {
    margin-top: 0;
    padding-bottom: 80px;
  }
}
.p-work__detail__message, .p-work__detail__message--01 {
  background-color: transparent;
  max-width: 992px;
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: -15px;
}
@media screen and (min-width: 576px) {
  .p-work__detail__message, .p-work__detail__message--01 {
    margin-top: -40px;
  }
}
@media screen and (min-width: 768px) {
  .p-work__detail__message, .p-work__detail__message--01 {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    width: 100%;
    margin: 80px auto 0;
  }
}
@media screen and (min-width: 992px) {
  .p-work__detail__message, .p-work__detail__message--01 {
    padding: 40px 64px;
  }
}
@media screen and (min-width: 768px) {
  .p-work__detail__message--01 {
    margin: 160px auto 0;
  }
}
.p-work__detail__message__body {
  background-color: #fff;
  padding: 40px;
  margin-top: -21px;
  margin-bottom: -21px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__body {
    background-color: transparent;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: static;
  }
}
.p-work__detail__message__curve {
  display: block;
  width: 100%;
  height: 80px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__curve {
    display: none;
  }
}
.p-work__detail__message__curve--top {
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}
.p-work__detail__message__curve--bottom {
  border-radius: 0 0 50% 50%/0 0 100% 100%;
}
.p-work__detail__message__main__imgitem--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__main__imgitem--pc {
    display: block;
    max-width: 210px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 20;
  }
}
@media screen and (min-width: 992px) {
  .p-work__detail__message__main__imgitem--pc {
    position: absolute;
    bottom: 0;
    right: 70px;
  }
}
.p-work__detail__message__main__imgitem--sp {
  display: flex;
  width: 90%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -18%;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__main__imgitem--sp {
    display: none;
  }
}
.p-work__detail__message__main__imgitem--sp--textimg {
  width: 70%;
}
.p-work__detail__message__main__imgitem--sp--img {
  width: 30%;
}
.p-work__detail__message__main__textitem {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__main__textitem {
    width: calc(100% - 250px);
  }
}
@media screen and (min-width: 992px) {
  .p-work__detail__message__main__textitem {
    width: calc(100% - 304px);
  }
}
.p-work__detail__message__ttl--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__ttl--pc {
    display: flex;
    padding: 15px 45px;
    justify-content: center;
    background: linear-gradient(180deg, #FEF2E6 0%, #FFF 129.79%);
    border-top: 1px solid #F57F00;
    border-top: 1px solid var(--main-color);
    border-left: 1px solid #F57F00;
    border-left: 1px solid var(--main-color);
    border-bottom: 3px solid #F57F00;
    border-bottom: 3px solid var(--main-color);
    border-right: 3px solid #F57F00;
    border-right: 3px solid var(--main-color);
    border-radius: 50px;
    margin: 0 auto 40px;
    max-width: 393px;
    width: 100%;
    color: #3E2214;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    font-weight: var(--base-font-bold);
    line-height: 100%;
    letter-spacing: 0.96px;
    position: relative;
    z-index: 20;
  }
}
.p-work__detail__message__flowericon {
  position: absolute;
  display: block;
  width: 80px;
  top: -18%;
  left: 0px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__flowericon {
    width: 135px;
    top: -20px;
    left: -20px;
  }
}
.p-work__detail__message__shineicon {
  position: absolute;
  display: block;
  width: 65px;
  bottom: -18%;
  right: 0px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__shineicon {
    width: 100px;
    bottom: -20px;
    right: -20px;
  }
}
.p-work__detail__message__textblock:not(:first-of-type) {
  margin-top: 1rem;
  line-height: 200%;
}
.p-work__detail__message__textblock > p {
  color: #3E2214;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  font-weight: var(--base-font-medium);
  line-height: 200%; /* 32px */
  letter-spacing: 0.16px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__message__textblock > p {
    font-size: 1.125rem;
    letter-spacing: 0.72px;
  }
}
.p-work__detail__btnwrap {
  position: relative;
  margin: 24px auto 0;
}
@media screen and (min-width: 768px) {
  .p-work__detail__btnwrap {
    margin: 32px auto 0;
  }
}
.p-work__detail__btn, .p-work__detail__btn--linklist, .p-work__detail__btn--main {
  color: #3E2214;
  color: var(--text-color);
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 120%;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-work__detail__btn, .p-work__detail__btn--linklist, .p-work__detail__btn--main {
    font-size: 1rem;
  }
}
.p-work__detail__btn--main {
  font-size: 0.875rem;
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__btn--main {
    font-size: 1rem;
  }
}
.p-work__detail__btn--linklist {
  font-size: 0.875rem;
  letter-spacing: 0.64px;
  line-height: 120%;
}
@media screen and (min-width: 768px) {
  .p-work__detail__btn--linklist {
    font-size: 1.25rem;
    letter-spacing: 0.8px;
    line-height: 150%;
  }
}
.p-work__detail__linklist {
  padding: 0 15px 64px 15px;
  background: radial-gradient(50% 50% at 50% 50%, #F9EFED 50%, #F6F7F0 100%);
}
@media screen and (min-width: 768px) {
  .p-work__detail__linklist {
    padding: 0 15px 128px 15px;
  }
}
.p-work__detail__linklist__ttl {
  color: #3E2214;
  color: var(--text, #3E2214);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-weight: var(--base-font-bold);
  line-height: 150%; /* 36px */
  letter-spacing: 0.96px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-work__detail__linklist__ttl {
    font-size: 1.75rem;
    letter-spacing: 1.12px;
  }
}
.p-work__detail__linklist__btnwrap {
  position: relative;
  margin: 40px auto 0;
}

body.is-video-modal-open {
  overflow: hidden;
}

/* マーカーの基本スタイル */
.u-display--pconly {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-display--pconly {
    display: block;
  }
}
.u-display--sponly {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-display--sponly {
    display: none;
  }
}

.u-gap--0 {
  gap: 0px !important;
}
.u-gap--10 {
  gap: 10px !important;
}
.u-gap--20 {
  gap: 20px !important;
}
.u-gap--24 {
  gap: 24px !important;
}
.u-gap--30 {
  gap: 30px !important;
}
.u-gap--32 {
  gap: 32px !important;
}
.u-gap--40 {
  gap: 40px !important;
}
.u-gap--50 {
  gap: 50px !important;
}
.u-gap--60 {
  gap: 60px !important;
}
.u-gap--70 {
  gap: 70px !important;
}
.u-gap--80 {
  gap: 80px !important;
}
.u-gap--90 {
  gap: 90px !important;
}
.u-gap--100 {
  gap: 100px !important;
}

.u-link__text--basehover {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .u-link__text--basehover:hover {
    text-decoration: underline;
    color: #F57F00;
    color: var(--main-color);
    transition: all 0.3s ease;
  }
}
.u-link__text--linehover {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .u-link__text--linehover:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
}
.u-link__hover {
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .u-link__hover:hover {
    opacity: 0.8;
    transition: all 0.3s ease;
  }
}
.u-link__hover__img {
  display: block;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .u-link__hover__img:hover .u-link__hover--scaleimg {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
.u-link__hover--scaleimg {
  display: block;
  transition: transform 0.3s ease;
}

.u-m--0 {
  margin: 0px !important;
}
.u-mt--0 {
  margin-top: 0px !important;
}
.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-ml--0 {
  margin-left: 0px !important;
}
.u-mr--0 {
  margin-right: 0px !important;
}
.u-mx--0 {
  margin: 0 0px !important;
}
.u-my--0 {
  margin: 0px 0 !important;
}
.u-m--10 {
  margin: 10px !important;
}
.u-mt--10 {
  margin-top: 10px !important;
}
.u-mb--10 {
  margin-bottom: 10px !important;
}
.u-ml--10 {
  margin-left: 10px !important;
}
.u-mr--10 {
  margin-right: 10px !important;
}
.u-mx--10 {
  margin: 0 10px !important;
}
.u-my--10 {
  margin: 10px 0 !important;
}
.u-m--20 {
  margin: 20px !important;
}
.u-mt--20 {
  margin-top: 20px !important;
}
.u-mb--20 {
  margin-bottom: 20px !important;
}
.u-ml--20 {
  margin-left: 20px !important;
}
.u-mr--20 {
  margin-right: 20px !important;
}
.u-mx--20 {
  margin: 0 20px !important;
}
.u-my--20 {
  margin: 20px 0 !important;
}
.u-m--24 {
  margin: 24px !important;
}
.u-mt--24 {
  margin-top: 24px !important;
}
.u-mb--24 {
  margin-bottom: 24px !important;
}
.u-ml--24 {
  margin-left: 24px !important;
}
.u-mr--24 {
  margin-right: 24px !important;
}
.u-mx--24 {
  margin: 0 24px !important;
}
.u-my--24 {
  margin: 24px 0 !important;
}
.u-m--30 {
  margin: 30px !important;
}
.u-mt--30 {
  margin-top: 30px !important;
}
.u-mb--30 {
  margin-bottom: 30px !important;
}
.u-ml--30 {
  margin-left: 30px !important;
}
.u-mr--30 {
  margin-right: 30px !important;
}
.u-mx--30 {
  margin: 0 30px !important;
}
.u-my--30 {
  margin: 30px 0 !important;
}
.u-m--40 {
  margin: 40px !important;
}
.u-mt--40 {
  margin-top: 40px !important;
}
.u-mb--40 {
  margin-bottom: 40px !important;
}
.u-ml--40 {
  margin-left: 40px !important;
}
.u-mr--40 {
  margin-right: 40px !important;
}
.u-mx--40 {
  margin: 0 40px !important;
}
.u-my--40 {
  margin: 40px 0 !important;
}
.u-m--50 {
  margin: 50px !important;
}
.u-mt--50 {
  margin-top: 50px !important;
}
.u-mb--50 {
  margin-bottom: 50px !important;
}
.u-ml--50 {
  margin-left: 50px !important;
}
.u-mr--50 {
  margin-right: 50px !important;
}
.u-mx--50 {
  margin: 0 50px !important;
}
.u-my--50 {
  margin: 50px 0 !important;
}
.u-m--60 {
  margin: 60px !important;
}
.u-mt--60 {
  margin-top: 60px !important;
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
.u-ml--60 {
  margin-left: 60px !important;
}
.u-mr--60 {
  margin-right: 60px !important;
}
.u-mx--60 {
  margin: 0 60px !important;
}
.u-my--60 {
  margin: 60px 0 !important;
}
.u-m--70 {
  margin: 70px !important;
}
.u-mt--70 {
  margin-top: 70px !important;
}
.u-mb--70 {
  margin-bottom: 70px !important;
}
.u-ml--70 {
  margin-left: 70px !important;
}
.u-mr--70 {
  margin-right: 70px !important;
}
.u-mx--70 {
  margin: 0 70px !important;
}
.u-my--70 {
  margin: 70px 0 !important;
}
.u-m--80 {
  margin: 80px !important;
}
.u-mt--80 {
  margin-top: 80px !important;
}
.u-mb--80 {
  margin-bottom: 80px !important;
}
.u-ml--80 {
  margin-left: 80px !important;
}
.u-mr--80 {
  margin-right: 80px !important;
}
.u-mx--80 {
  margin: 0 80px !important;
}
.u-my--80 {
  margin: 80px 0 !important;
}
.u-m--90 {
  margin: 90px !important;
}
.u-mt--90 {
  margin-top: 90px !important;
}
.u-mb--90 {
  margin-bottom: 90px !important;
}
.u-ml--90 {
  margin-left: 90px !important;
}
.u-mr--90 {
  margin-right: 90px !important;
}
.u-mx--90 {
  margin: 0 90px !important;
}
.u-my--90 {
  margin: 90px 0 !important;
}
.u-m--100 {
  margin: 100px !important;
}
.u-mt--100 {
  margin-top: 100px !important;
}
.u-mb--100 {
  margin-bottom: 100px !important;
}
.u-ml--100 {
  margin-left: 100px !important;
}
.u-mr--100 {
  margin-right: 100px !important;
}
.u-mx--100 {
  margin: 0 100px !important;
}
.u-my--100 {
  margin: 100px 0 !important;
}
.u-m--auto {
  margin: auto;
}
.u-mt--1r {
  margin-top: 1rem;
}
.u-mb--1r {
  margin-bottom: 1rem;
}
.u-ml--1r {
  margin-left: 1rem;
}
.u-ml--2r {
  margin-left: 2rem;
}
.u-mr--1r {
  margin-right: 1rem;
}

.u-text--pcleftspcenter {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .u-text--pcleftspcenter {
    text-align: left;
  }
}

/*# sourceMappingURL=style.css.map*/