@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* Document
 * * ========================================================================== */
/**
 * * Add border box sizing in all browsers (opinionated).
 * */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

/**
 * * Remove the margin on nested lists in Edge 18- and IE.
 * */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * * 1. Add the correct sizing in Firefox.
 * * 2. Show the overflow in Edge 18- and IE.
 * */
hr {
  height: 0;
  overflow: visible;
}

/**
 * * Add the correct display in IE.
 * */
main {
  display: block;
}

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

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

/* Text-level semantics
 * * ========================================================================== */
/**
 * * Remove the gray background on active links in IE 10.
 * */
a {
  background-color: transparent;
}

/**
 * * Add the correct text decoration in Edge 18-, IE, and Safari.
 * */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * * Add the correct font weight in Chrome, Edge, and Safari.
 * */
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.
 * */
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

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

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

/**
 * * Add the correct display in IE 9-.
 * */
audio,
video {
  display: inline-block;
}

/**
 * * Add the correct display in iOS 4-7.
 * */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * * Remove the border on images within links in IE 10-.
 * */
img {
  border-style: none;
}

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

/**
 * * Hide the overflow in IE.
 * */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * * ========================================================================== */
/**
 * * Collapse border spacing in all browsers (opinionated).
 * */
table {
  border-collapse: collapse;
}

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

/**
 * * 1. Show the overflow in IE.
 * * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 * */
button {
  overflow: visible;
  text-transform: none;
}

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

/**
 * * 1. Change the inconsistent appearance in all browsers (opinionated).
 * * 2. Correct the padding in Firefox.
 * */
fieldset {
  border: 1px solid #a0a0a0;
  padding: 0.35em 0.75em 0.625em;
}

/**
 * * Show the overflow in Edge 18- and IE.
 * */
input {
  overflow: visible;
}

/**
 * * 1. Correct the text wrapping in Edge 18- and IE.
 * * 2. Correct the color inheritance from `fieldset` elements in IE.
 * */
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

/**
 * * 1. Add the correct display in Edge 18- and IE.
 * * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 * */
progress {
  display: inline-block;
  vertical-align: baseline;
}

/**
 * * Remove the inheritance of text transform in Firefox.
 * */
select {
  text-transform: none;
}

/**
 * * 1. Remove the margin in Firefox and Safari.
 * * 2. Remove the default vertical scrollbar in IE.
 * * 3. Change the resize direction in all browsers (opinionated).
 * */
textarea {
  margin: 0;
  overflow: auto;
  resize: vertical;
}

/**
 * * Remove the padding in IE 10-.
 * */
[type=checkbox],
[type=radio] {
  padding: 0;
}

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

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

/**
 * * Remove the inner border and padding of focus outlines in Firefox.
 * */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * * Restore the focus outline styles unset by the previous rule in Firefox.
 * */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * * Remove the additional :invalid styles in Firefox.
 * */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * * ========================================================================== */
/* * Add the correct display in Edge 18- and IE.
 * */
details {
  display: block;
}

/* * Add the correct styles in Edge 18-, IE, and Safari.
 * */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

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

/* * Add the correct display in all browsers.
 * */
summary {
  display: list-item;
}

/* Scripting
 * * ========================================================================== */
/**
 * * Add the correct display in IE 9-.
 * */
canvas {
  display: inline-block;
}

/**
 * * Add the correct display in IE.
 * */
template {
  display: none;
}

/* User interaction
 * * ========================================================================== */
/* * 1. Remove the tapping delay in IE 10.
 * * 2. Remove the tapping delay on clickable elements
 *    in all browsers (opinionated).
 * */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/**
 * * Add the correct display in IE 10-.
 * */
[hidden] {
  display: none;
}

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

/* * Change the cursor on control elements in all browsers (opinionated).
 * */
[aria-controls] {
  cursor: pointer;
}

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

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

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

html {
  font-size: min(1.25vw, 16px);
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  html {
    font-size: min(3.6vw, 14px);
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: #444444;
}
body::-moz-selection {
  background-color: #F5BC00;
  color: #ffffff;
}
body::selection {
  background-color: #F5BC00;
  color: #ffffff;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #444444;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: unset;
  font-weight: unset;
  margin: 0;
}

p {
  margin: 0;
}

small {
  display: inline-block;
  font-size: 0.75rem;
  color: #666666;
  margin-top: 0.75rem;
}
small::before {
  content: "※";
}

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

button {
  cursor: pointer;
  border: unset;
  background: unset;
  padding: 0;
}

figure {
  margin: 0;
}

.l-header {
  position: absolute;
  width: 100vw;
  z-index: 100;
  background-color: #ffffff;
  -webkit-box-shadow: 0rem 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0rem 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.12);
}
.l-header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.5rem;
  width: 100%;
  height: 4rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-header__box {
    height: 4rem;
    padding: 0;
  }
}
.l-header__logo {
  width: 9rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-header__logo {
    width: 7.5rem;
    margin-bottom: 0.375rem;
  }
}
.l-header__logo img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.l-header__logo:hover img {
  opacity: 0.7;
}
.l-header__link {
  position: relative;
  color: #4B7FCC;
  padding-left: 1.25rem;
  line-height: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-header__link {
    font-size: 0.875rem;
    font-weight: 600;
  }
}
.l-header__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background-image: url("/rc/yokkaichi/assets/img/common/ico-common_arrow-l.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 0.5rem;
  aspect-ratio: 8/14;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}
.l-header__link:hover {
  color: #0099ff;
}

.l-main {
  padding-top: 96px;
  overflow: hidden;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-main {
    padding: 0rem 1.25rem;
    padding-top: 60px;
  }
}

.l-footer {
  position: relative;
  margin-top: -5rem;
}
.l-footer__wrap {
  position: relative;
  z-index: 5;
}
.l-footer__outer {
  position: absolute;
  top: 10rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-footer__outer {
    top: 9.5rem;
    padding: 0 1.25rem;
    width: 90%;
  }
}
.l-footer__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-footer__li {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    margin-bottom: 2.5rem;
  }
}
.l-footer__li-item {
  font-size: 0.875rem;
  padding-right: 1rem;
  border-right: 1px solid #ffffff;
  line-height: 1;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-footer__li-item:nth-of-type(2) {
    border-right: none;
  }
}
.l-footer__li-item:last-of-type {
  padding-right: none;
  border-right: none;
}
.l-footer a, .l-footer p {
  color: #ffffff;
}
.l-footer .c-wave {
  height: 15rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-footer .c-wave {
    height: 13.5rem;
  }
}
.l-footer .c-wave path {
  color: #96c3ad;
}
.l-footer .l-footer__nature {
  position: absolute;
  top: 3.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 71.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-footer .l-footer__nature {
    min-width: 26rem;
    max-width: 31.5rem;
    width: 80%;
    top: 2.5rem;
  }
}
.l-footer .l-footer__nature.-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-footer .l-footer__nature.-pc {
    display: none;
  }
}
.l-footer .l-footer__nature.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-footer .l-footer__nature.-sp {
    display: block;
  }
}
.l-footer__copy {
  text-align: center;
  font-size: 0.75rem;
}

.l-container--640 {
  max-width: 640px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--640 {
    padding: 0 1.25rem;
  }
}
.l-container--720 {
  max-width: 720px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--720 {
    padding: 0 1.25rem;
  }
}
.l-container--800 {
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--800 {
    padding: 0 1.25rem;
  }
}
.l-container--880 {
  max-width: 880px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--880 {
    padding: 0 1.25rem;
  }
}
.l-container--960 {
  max-width: 960px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--960 {
    padding: 0 1.25rem;
  }
}
.l-container--1000 {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--1000 {
    padding: 0 1.25rem;
  }
}
.l-container--1040 {
  max-width: 1040px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--1040 {
    padding: 0 1.25rem;
  }
}
.l-container--1120 {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--1120 {
    padding: 0 1.25rem;
  }
}
.l-container--1200 {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--1200 {
    padding: 0 1.25rem;
  }
}
.l-container--1280 {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-container--1280 {
    padding: 0 1.25rem;
  }
}

.l-section__wrap {
  padding: 6rem 0;
}

.c-wave {
  position: relative;
  width: 100vw;
  height: 17.5rem;
  overflow: hidden;
  z-index: -10;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .c-wave {
    height: 22rem;
  }
}
.c-wave svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 230rem;
  aspect-ratio: 3680/880;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .c-wave svg {
    width: 118.75rem;
    aspect-ratio: 1900/720;
  }
}

.c-txt__hl {
  height: 5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .c-txt__hl {
    height: 3.25rem;
    margin-bottom: 2rem;
  }
}
.c-txt__hl img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-txt__sub-hl {
  height: 3.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .c-txt__sub-hl {
    height: 2.5rem;
    margin-bottom: 1.5rem;
  }
}
.c-txt__sub-hl img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
.c-comment__txt {
  position: relative;
  font-size: 0.875rem;
  width: 23.5rem;
  padding: 0.625rem 1.25rem 0.75rem;
  background-color: #f4f2f0;
  border-radius: 8px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .c-comment__txt {
    width: calc(100% - 4.5rem);
  }
}
.c-comment__txt::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(90%, -50%);
          transform: translate(90%, -50%);
  width: 0.625rem;
  height: 1.25rem;
  background-color: #f4f2f0;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.c-comment__man {
  width: 2.75rem;
  min-width: 2.75rem;
}

.p-fv__wrap {
  position: relative;
  height: 100dvh;
  background-color: #F4F4F4;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__wrap {
    height: calc(90dvh + 17.5rem);
  }
}
.p-fv__outer {
  position: relative;
  width: 100vw;
  height: calc(100dvh - 11rem);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__outer {
    height: 90dvh;
  }
}
.p-fv__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.p-fv__img {
  width: 50vw;
  height: 100%;
  overflow: hidden;
}
.p-fv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fv__img img.-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__img img.-pc {
    display: none;
  }
}
.p-fv__img img.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__img img.-sp {
    display: block;
  }
}
.p-fv__page-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-fv__page-ttl img, .p-fv__page-ttl svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20rem;
}
.p-fv__gr {
  position: relative;
  background-color: #96c3ad;
  width: 100vw;
  height: 11rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__gr {
    height: 17.5rem;
  }
}
.p-fv__gr__nature {
  position: absolute;
  top: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 71.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__gr__nature {
    min-width: 26rem;
    max-width: 31.5rem;
    width: 80%;
    top: 1.5rem;
  }
}
.p-fv__gr__nature.-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__gr__nature.-pc {
    display: none;
  }
}
.p-fv__gr__nature.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__gr__nature.-sp {
    display: block;
  }
}
.p-fv__gr__factory {
  position: absolute;
  bottom: 0.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 67.5rem;
  margin-bottom: -0.0625rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__gr__factory {
    min-width: 23rem;
    max-width: 31.5rem;
    width: 80%;
  }
}
.p-fv__gr__factory.-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__gr__factory.-pc {
    display: none;
  }
}
.p-fv__gr__factory.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__gr__factory.-sp {
    display: block;
  }
}
.p-fv__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin: auto 0;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
    bottom: 3.75rem;
    padding-top: 1.75rem;
  }
}
.p-fv__nav__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F5F1EA;
  border-radius: 100vh;
  width: 17.5rem;
  height: 4rem;
  padding: 0 3rem;
  line-height: 1.3;
  font-weight: 600;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0rem 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0rem 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__nav__btn {
    width: 20rem;
    height: 3.5rem;
    padding: 0 3rem 0 2rem;
  }
}
.p-fv__nav__btn::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  background-image: url("/rc/yokkaichi/assets/img/common/ico-common_arrow-u.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 0.625rem;
}
.p-fv__nav__btn__txt {
  margin-bottom: 0.25rem;
  letter-spacing: 0.1875rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__nav__btn__txt {
    font-size: 1.125rem;
  }
}
.p-fv__nav__btn__txt .-bl {
  color: #4B7FCC;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-fv__nav__btn__txt br {
    display: none;
  }
}
.p-fv__nav__btn:hover {
  -webkit-filter: contrast(120%);
          filter: contrast(120%);
}

.p-place__wrap {
  padding: 10rem 0 0;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__wrap {
    padding: 4rem 0 0;
  }
}
.p-place__outer__1 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__outer__1 {
    margin-bottom: 3rem;
  }
}
.p-place__lead {
  position: relative;
  z-index: 5;
  width: 40rem;
  line-height: 2;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__lead {
    width: 85%;
  }
}
.p-place__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -7.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__map {
    margin-top: -11rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.p-place__map .-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__map .-pc {
    display: none;
  }
}
.p-place__map .-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__map .-sp {
    display: block;
    max-width: 35rem;
    width: calc(100vw - 1.25rem);
    margin-right: -2.5rem;
  }
}
.p-place .c-txt__sub-hl {
  text-align: center;
}
.p-place__card-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__card-wrap {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-place__card {
  position: relative;
  background-color: #f5ebd9;
  border-radius: 1.25rem;
  padding: 2.75rem 1.25rem 1.5rem;
}
.p-place__card__img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 2.25rem;
  width: 6rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__card__img {
    top: 1.8rem;
    width: 4.8rem;
  }
}
.p-place__card__ttl {
  margin-top: 7.25rem;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place__card__ttl {
    font-size: 1.125rem;
    margin-top: 5rem;
    margin-bottom: 0.875rem;
  }
}
.p-place__card__txt span.-bd {
  font-weight: 600;
  color: #F89A2D;
}
.p-place .c-wave {
  margin-top: -7.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-place .c-wave {
    margin-top: -14rem;
  }
}
.p-place .c-wave path {
  color: #f4f4f4;
}

.p-life {
  position: relative;
  margin-top: -5rem;
}
.p-life::before {
  content: "";
  position: absolute;
  z-index: -20;
  background-image: url("/rc/yokkaichi/assets/img/life/bg-life_sky.webp");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100%;
}
.p-life__wrap {
  position: relative;
  padding: 11.5rem 0 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__wrap {
    padding: 7.5rem 0 0;
  }
}
.p-life .c-txt__hl {
  margin-bottom: 6.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life .c-txt__hl {
    margin-bottom: 3rem;
  }
}
.p-life .c-txt__sub-hl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life .c-txt__sub-hl {
    margin-bottom: 3.5rem;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life .c-txt__sub-hl img.-pc {
    display: none;
  }
}
.p-life .c-txt__sub-hl img.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life .c-txt__sub-hl img.-sp {
    display: block;
  }
}
.p-life__outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__outer {
    gap: 2rem;
  }
}
.p-life__outer::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-life__outer.-gr_1 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__outer.-gr_1 {
    margin-bottom: 3rem;
  }
}
.p-life__outer.-gr_1::after {
  right: 0;
  top: 15.125rem;
  width: 6.5rem;
  aspect-ratio: 107/186;
  background-image: url("/rc/yokkaichi/assets/img/life/ilst-life_1-01.webp");
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__outer.-gr_1::after {
    top: -14.5rem;
    right: 3.5rem;
    width: 3.5rem;
  }
}
.p-life__outer.-gr_2 {
  padding-left: 20.25rem;
  margin-bottom: 6.625rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__outer.-gr_2 {
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
}
.p-life__outer.-gr_2::after {
  left: 1.5rem;
  top: 15.125rem;
  width: 6rem;
  aspect-ratio: 100/181;
  background-image: url("/rc/yokkaichi/assets/img/life/ilst-life_1-02.webp");
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__outer.-gr_2::after {
    top: -1.5rem;
    right: unset;
    left: 7.5rem;
    width: 3.5rem;
  }
}
.p-life__topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__topic {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1rem;
  }
}
.p-life__topic__img {
  width: 6.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__topic__img {
    width: 5rem;
  }
}
.p-life__topic__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__topic__col {
    width: 95%;
  }
}
.p-life .c-comment:nth-of-type(1) .c-comment__txt, .p-life .c-comment:nth-of-type(3) .c-comment__txt {
  background-color: #F9FAF1;
}
.p-life .c-comment:nth-of-type(1) .c-comment__txt::after, .p-life .c-comment:nth-of-type(3) .c-comment__txt::after {
  background-color: #F9FAF1;
}
.p-life .c-comment:nth-of-type(2) .c-comment__txt {
  background-color: #d4e9dd;
}
.p-life .c-comment:nth-of-type(2) .c-comment__txt::after {
  background-color: #d4e9dd;
}
.p-life .c-comment__txt {
  font-size: 1rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life .c-comment__txt {
    width: calc(100vw - 6.5rem);
  }
}
.p-life .c-wave {
  height: 10rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life .c-wave {
    height: 6rem;
  }
}
.p-life .c-wave path {
  color: #96c3ad;
}
.p-life .c-wave .p-life__nature {
  top: unset;
  bottom: 1rem;
}
.p-life__nature {
  position: absolute;
  top: 1.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  width: 71.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__nature {
    width: 25rem;
    top: 5rem;
  }
}
.p-life__nature.-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__nature.-pc {
    display: none;
  }
}
.p-life__nature.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life__nature.-sp {
    display: block;
  }
}

.p-life-rec {
  position: relative;
}
.p-life-rec::before {
  content: "";
  position: absolute;
  z-index: -20;
  background-image: url("/rc/yokkaichi/assets/img/life/bg-life_board.webp");
  background-size: cover;
  background-repeat: repeat;
  width: 100vw;
  height: 100%;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec::before {
    background-size: 250% auto;
  }
}
.p-life-rec__sub-hl-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 7.5rem;
  background-color: #FFFCF7;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__sub-hl-label {
    height: 6rem;
  }
}
.p-life-rec__sub-hl-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background-color: #C1A981;
}
.p-life-rec .c-txt__sub-hl {
  text-align: center;
  margin-bottom: 0;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec .c-txt__sub-hl {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec .c-txt__sub-hl img.-pc {
    display: none;
  }
}
.p-life-rec .c-txt__sub-hl img.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec .c-txt__sub-hl img.-sp {
    display: block;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec .l-container--1120 {
    padding: 0;
  }
}
.p-life-rec__outer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3.375rem 1fr 3.375rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 3.375rem;
  padding: 3.5rem 0 10.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    max-width: 536px;
    padding: 0 0 7.5rem;
    width: calc(100vw - 2.5rem);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img {
    width: 65%;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img.-num_1 {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
.p-life-rec__img.-num_2 {
  -webkit-transform: unset;
          transform: unset;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img.-num_2 {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -1.5rem;
  }
}
.p-life-rec__img.-num_3 {
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img.-num_3 {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    margin-top: -1.5rem;
  }
}
.p-life-rec__img.-num_4 {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img.-num_4 {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -2.5rem;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img.-num_5 {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    margin-top: -1.5rem;
    z-index: 1;
  }
}
.p-life-rec__img.-num_6 {
  -webkit-transform: unset;
          transform: unset;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img.-num_6 {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-top: -2.75rem;
    z-index: 2;
  }
}
.p-life-rec__img img.-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img img.-pc {
    display: none;
  }
}
.p-life-rec__img img.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-life-rec__img img.-sp {
    display: block;
  }
}

.p-factory {
  position: relative;
}
.p-factory::before {
  content: "";
  position: absolute;
  top: 13.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("/rc/yokkaichi/assets/img/factory/bg-factory_honeycomb.webp");
  background-size: contain;
  background-position: top;
  background-repeat: repeat-y;
  width: 80rem;
  height: 100%;
  z-index: -10;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory::before {
    top: 10rem;
    width: 50rem;
  }
}
.p-factory .c-wave {
  margin-top: -5rem;
  height: 5rem;
  color: #ffffff;
}
.p-factory__wrap {
  padding: 6rem 0 4.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory__wrap {
    padding: 1.5rem 0 3.5rem;
  }
}
.p-factory__outer {
  text-align: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory .c-txt__hl {
    height: 6.5rem;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory .c-txt__hl img.-pc {
    display: none;
  }
}
.p-factory .c-txt__hl img.-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory .c-txt__hl img.-sp {
    display: block;
  }
}
.p-factory__lead {
  margin-bottom: 4rem;
  line-height: 2;
  font-size: 1.125rem;
  text-align: start;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory__lead {
    margin-bottom: 2rem;
  }
}
.p-factory__ttl {
  position: relative;
  font-weight: 600;
  display: inline-block;
  font-size: 1.75rem;
  margin: 0 auto 2.5rem;
  letter-spacing: 0.25rem;
  color: #4B7FCC;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory__ttl {
    font-size: 1.625rem;
    margin: 0 auto 1.75rem;
  }
}
.p-factory__ttl::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: #F5BC00;
  border-radius: 100vh;
}
.p-factory__mv__img {
  border-radius: 20px;
  overflow: hidden;
}
.p-factory__mv__txt {
  font-size: 1.125rem;
  margin: 2rem 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory__mv__txt {
    font-size: 1rem;
    margin: 1.75rem 0;
  }
}
.p-factory__img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: -0.125rem;
}
.p-factory__img .-pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory__img .-pc {
    display: none;
  }
}
.p-factory__img .-sp {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory__img .-sp {
    display: block;
    max-width: 35rem;
    margin: 0 auto;
  }
}
.p-factory .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}

.p-factory-ben {
  position: relative;
  background-color: #faf5e2;
}
.p-factory-ben::before {
  content: "";
  position: absolute;
  top: 6rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("/rc/yokkaichi/assets/img/factory/bg-factory_honeycomb.webp");
  background-size: contain;
  background-position: top;
  background-repeat: repeat-y;
  width: 80rem;
  height: calc(100% - 6rem);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben::before {
    width: 50rem;
  }
}
.p-factory-ben__wrap {
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben__wrap {
    padding-top: 1rem;
  }
}
.p-factory-ben .c-txt__sub-hl {
  text-align: center;
  height: 5.5rem;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben .c-txt__sub-hl {
    height: 4rem;
    margin-bottom: 2.5rem;
  }
}
.p-factory-ben__card__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben__card__wrap {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-factory-ben__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background-color: #ffffff;
  padding: 0 2rem 2rem;
  border-radius: 16px;
  height: 100%;
}
.p-factory-ben__card__ttl {
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 2.75rem;
}
.p-factory-ben__card__ttl * {
  padding: 0 0.25rem;
}
.p-factory-ben__card__ttl .-yl {
  color: #F5BC00;
}
.p-factory-ben__card__ttl .-bl {
  color: #4C7FCC;
}
.p-factory-ben__card__ttl .-lg {
  font-size: 1.5rem;
}
.p-factory-ben__card__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.25rem;
  width: 3.5rem;
  aspect-ratio: 28/26;
  background-image: url("/rc/yokkaichi/assets/img/factory/ico-factory_2-01.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-factory-ben__card__img {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 7.5rem;
}
.p-factory-ben__card__txt {
  margin-top: 1.25rem;
}
.p-factory-ben__card__txt span.-bd {
  font-weight: 600;
  color: #4B7FCC;
}
.p-factory-ben__card .c-comment {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
}
.p-factory-ben__card .c-comment__txt {
  background-color: #faf5e2;
}
.p-factory-ben__card .c-comment__txt::after {
  background-color: #faf5e2;
}
.p-factory-ben__card__li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  line-height: 1.5;
}
.p-factory-ben__card__li li {
  position: relative;
  padding-left: 1.25rem;
}
.p-factory-ben__card__li li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6875rem;
  background-color: #F5BC00;
  border-radius: 100vh;
  width: 0.625rem;
  aspect-ratio: 1/1;
}
.p-factory-ben__card__li li .-ttl {
  color: #4B7FCC;
  font-weight: 600;
  font-size: 1.0625rem;
}
.p-factory-ben__btn-area {
  position: relative;
  padding: 7.5rem 0 10rem;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben__btn-area {
    padding: 4rem 0 7.5rem;
  }
}
.p-factory-ben__btn-area::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 4rem;
  left: 12rem;
  width: 5rem;
  aspect-ratio: 107/186;
  background-image: url("/rc/yokkaichi/assets/img/life/ilst-life_1-02.webp");
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben__btn-area::after {
    top: 1.5rem;
    left: 0.75rem;
    width: 3rem;
  }
}
.p-factory-ben__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20rem;
  height: 4rem;
  border-radius: 100vh;
  background-color: #4C7FCC;
  -webkit-box-shadow: 0rem 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0rem 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin: 0 auto;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben__btn {
    width: 17.5rem;
    height: 3.5rem;
  }
}
.p-factory-ben__btn::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  width: 0.75rem;
  aspect-ratio: 10/16;
  background-image: url("/rc/yokkaichi/assets/img/common/ico-common_arrow-l-wh.webp");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 0.25rem;
}
.p-factory-ben__btn p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-factory-ben__btn p {
    font-size: 1rem;
  }
}
.p-factory-ben__btn:hover {
  -webkit-filter: contrast(120%);
          filter: contrast(120%);
}

.p-page-top {
  opacity: 0;
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 6rem;
  aspect-ratio: 1/1;
  z-index: 400;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-page-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}
.p-page-top.is-visible {
  opacity: 1;
}
.p-page-top__btn {
  display: block;
}
.p-page-top__btn:hover {
  -webkit-filter: contrast(120%);
          filter: contrast(120%);
}

span.u-inline-bl {
  display: inline-block;
}

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

br.u-br--pc {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  br.u-br--pc {
    display: none;
  }
}

body.is-fixed {
  overflow: hidden;
  height: 100vh;
}

.js-header, .js-header.is-hide {
  opacity: 0;
  -webkit-filter: blur(0.625rem);
          filter: blur(0.625rem);
}

.js-header:not(.is-hide) {
  opacity: 1;
  -webkit-transition: 0.7s 1.2s;
  transition: 0.7s 1.2s;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.js-fv .p-fv__page-ttl.-anim, .js-fv.is-anim .p-fv__page-ttl.-anim {
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

.js-fv:not(.is-anim) .p-fv__page-ttl.-anim {
  opacity: 0;
}

.js-fv .p-fv__img, .js-fv.is-anim .p-fv__img {
  opacity: 0;
  -webkit-filter: blur(1.25rem);
          filter: blur(1.25rem);
}
.js-fv .p-fv__page-ttl.-wh, .js-fv.is-anim .p-fv__page-ttl.-wh {
  opacity: 0;
  -webkit-filter: blur(1.25rem);
          filter: blur(1.25rem);
}
.js-fv .js-fv__nav, .js-fv.is-anim .js-fv__nav {
  opacity: 0;
  -webkit-filter: blur(0.625rem);
          filter: blur(0.625rem);
}

.js-fv:not(.is-anim) .p-fv__img {
  opacity: 1;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.js-fv:not(.is-anim) .p-fv__page-ttl.-wh {
  opacity: 1;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.js-fv:not(.is-anim) .js-fv__nav {
  opacity: 1;
  -webkit-transition: 0.7s 1.2s;
  transition: 0.7s 1.2s;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.js-blur {
  opacity: 0;
  -webkit-filter: blur(0.3rem);
          filter: blur(0.3rem);
  -webkit-transition: 1s;
  transition: 1s;
}

.js-target.is-active .js-blur {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

.js-fadeIn {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.js-target.is-active .js-fadeIn {
  opacity: 1;
}

.js-fadeUp {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.js-target.is-active .js-fadeUp {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.js-jump {
  opacity: 0;
}

.js-target.is-active .js-jump {
  -webkit-animation: jumpAnime 0.8s forwards;
          animation: jumpAnime 0.8s forwards;
}
@-webkit-keyframes jumpAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateY(-1.8rem);
            transform: translateY(-1.8rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes jumpAnime {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  40% {
    -webkit-transform: translateY(-1.8rem);
            transform: translateY(-1.8rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}