@charset "UTF-8";
/* fonts */
/*
min-font-size ($font_size, $min_font_size)

$font_size (vw):     可変フォントサイズ
$min_font_size (px): 最小フォントサイズ
*/
/*
max-font-size ($font_size, $max_font_size)

$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*
@mixin clamp-font-size ($min_font_size, $font_size, $max_font_size)

$min_font_size (px): 最小フォントサイズ
$font_size (vw):     可変フォントサイズ
$max_font_size (px): 最大フォントサイズ
*/
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

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

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* #Typography
----------------------------------------------------------------- */
html {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 0.5555555556vw;
}
@media screen and (max-width: 767px ) {
  html {
    font-size: 1.3333333333vw;
  }
}

b,
strong,
.bold {
  font-weight: 700;
}

/* #base
----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
}
body * {
  box-sizing: border-box;
}
body img,
body picture,
body svg,
body iframe {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 100%;
}

/* #wrapper
----------------------------------------------------------------- */
.l-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  backface-visibility: hidden;
}
/* #main
----------------------------------------------------------------- */
.l-main {
  width: 100dvw;
  height: auto;
  position: relative;
  background: url(/_var/lp/unilever/unilever_250701/images/bg.jpg) repeat-y top/100% auto;
}
@media screen and (max-width: 767px ) {
  .l-main {
    background: url(/_var/lp/unilever/unilever_250701/images/bg_sp.jpg) repeat-y top/100% auto;
  }
}

/* #footer
----------------------------------------------------------------- */
.l-footer {
  width: 100%;
  height: 26.5rem;
  padding-top: 20rem;
  padding-bottom: 4.5rem;
  background-color: #3e3a39;
}
@media screen and (max-width: 767px ) {
  .l-footer {
    height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.l-footer__inner {
  width: 166rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 767px ) {
  .l-footer__inner {
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.l-footer__copy {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
}
@media screen and (max-width: 767px ) {
  .l-footer__left {
    order: 3;
    margin-top: 4.5rem;
  }
}
@media screen and (max-width: 767px ) {
  .l-footer__right {
    order: 2;
  }
}
.l-footer__nav {
  display: flex;
  align-items: center;
}
.l-footer__nav li {
  margin-left: 3.5rem;
}
.l-footer__nav li:first-of-type {
  margin-left: 0;
}
.l-footer__nav li a {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #ffffff;
}
/* #c-block
----------------------------------------------------------------- */
.c-block {
  margin-top: 11rem;
  width: 140rem;
  height: auto;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px ) {
  .c-block {
    margin-top: 3.5rem;
    width: 66.5rem;
  }
}
.c-block__main {
  width: 100%;
  background: #ffffff;
}

/* #c-buttonSubmit
----------------------------------------------------------------- */
.c-buttonSubmit {
  display: block;
  filter: drop-shadow(0.7rem 0.7rem 0.5rem rgba(119, 119, 119, 0.75));
  transform: translateY(0);
  transition: all 0.3s;
}
.c-buttonSubmit:hover {
  transform: translateY(0.5rem);
  filter: drop-shadow(0 0 0 rgba(119, 119, 119, 0.2));
}
/* #buttonContact
----------------------------------------------------------------- */
.c-buttonContact {
  display: block;
  opacity: 1;
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(32, 23, 20, 0.2));
  transition: all 0.3s;
}
.c-buttonContact:hover {
  opacity: 0.8;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.2));
}
/* #buttonX
----------------------------------------------------------------- */
.c-buttonX {
  display: block;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
  transition: all 0.3s;
}
.c-buttonX:hover {
  opacity: 0.8;
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px ) {
  .c-buttonX {
    filter: drop-shadow(0 0.3rem 0.3rem rgba(0, 0, 0, 0.2));
  }
}

/* #c-buttonInquiry
----------------------------------------------------------------- */
.c-buttonInquiry {
  display: block;
  transform: translate(0);
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.7));
  transition: all 0.3s;
}
.c-buttonInquiry:hover {
  transform: translateY(0.3rem);
  filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0.2));
}
/* #js-scrollEffect
----------------------------------------------------------------- */
.js-scrollEffect--fadeInUp,
.js-loadEffect--fadeInUp {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeInUp.is-active,
.js-loadEffect--fadeInUp.is-active {
  opacity: 1 !important;
  transform: translateY(0);
}
.js-scrollEffect--fadeInLeft,
.js-loadEffect--fadeInLeft {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateX(-10rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInLeft.is-active,
.js-loadEffect--fadeInLeft.is-active {
  opacity: 1 !important;
  transform: translateX(0);
}
.js-scrollEffect--fadeInRight,
.js-loadEffect--fadeInRight {
  will-change: opacity, transform;
  opacity: 0;
  transform: translateX(10rem);
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--fadeInRight.is-active,
.js-loadEffect--fadeInRight.is-active {
  opacity: 1 !important;
  transform: translateX(0);
}
.js-scrollEffect--zoomIn,
.js-loadEffect--zoomIn {
  opacity: 0;
  transform: scale(1.05);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js-scrollEffect--zoomIn.is-active,
.js-loadEffect--zoomIn.is-active {
  opacity: 1;
  transform: scale(1);
}
.js-scrollEffect--fadeIn,
.js-loadEffect--fadeIn {
  will-change: opacity;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.76, 0.05, 0.86, 0.06);
  transition-delay: 0.1s;
}
.js-scrollEffect--fadeIn.is-active,
.js-loadEffect--fadeIn.is-active {
  opacity: 1 !important;
}
.js-scrollEffect--slideIn,
.js-loadEffect--slideIn {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
  transition: clip-path 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn.is-active,
.js-loadEffect--slideIn.is-active {
  clip-path: inset(0 0 0 0);
}
.js-scrollEffect--slideIn2,
.js-loadEffect--slideIn2 {
  clip-path: polygon(0 0, 0 0%, 0% 0);
  will-change: clip-path;
  transition: clip-path 1.1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.js-scrollEffect--slideIn2.is-active,
.js-loadEffect--slideIn2.is-active {
  clip-path: polygon(0 0, 0 200%, 200% 0);
}
.js-scrollEffect--bounceInDown,
.js-loadEffect--bounceInDown {
  opacity: 0;
  transform: translate3d(0, -6rem, 0) scaleY(1.2);
}
.js-scrollEffect--bounceInDown.is-active,
.js-loadEffect--bounceInDown.is-active {
  animation: bounceInDown 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -6rem, 0) scaleY(1.2);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 1rem, 0) scaleY(0.9);
  }
  75% {
    opacity: 1;
    transform: translate3d(0, -1rem, 0) scaleY(0.95);
  }
  90% {
    opacity: 1;
    transform: translate3d(0, 0.5rem, 0) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
/* #p-mv
----------------------------------------------------------------- */
.p-mv {
  width: 100%;
  height: auto;
  position: relative;
}
.p-mv__image {
  width: 100%;
  height: auto;
}
.p-mv__period {
  width: 100%;
  height: auto;
}
/* #p-top
----------------------------------------------------------------- */
.p-top {
  width: 100%;
  margin-top: 12.3rem;
}
@media screen and (max-width: 767px ) {
  .p-top {
    margin-top: 6.6rem;
  }
}
.p-top__image {
  width: 140rem;
  height: auto;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-top__image {
    width: 66.6rem;
  }
}
.p-top__image a {
  display: block;
  width: 24.5rem;
  height: 4.3rem;
  background: #ffffff;
  position: absolute;
  top: 62rem;
  right: 27.8rem;
  text-indent: -9999px;
  mix-blend-mode: color-dodge;
  opacity: 0;
  transition: all 0.3s;
}
.p-top__image a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 767px ) {
  .p-top__image a {
    top: 128.2rem;
    right: 21.4rem;
  }
}
.p-top__text {
  text-align: center;
  color: #381100;
  margin-top: 5rem;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  font-weight: 700;
}
.p-top__submit {
  margin-top: 6rem;
  width: 89.8rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-top__submit {
    margin-top: 7rem;
    width: 61rem;
  }
}
.p-top__contact {
  margin-top: 5.6rem;
  width: 68.6rem;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-top__contact {
    margin-top: 3rem;
    width: 45.5rem;
  }
}

/* #p-kikan
----------------------------------------------------------------- */
@media screen and (max-width: 767px ) {
  .p-kikan {
    width: 61rem;
    margin-top: 8.8rem;
  }
}
.p-kikan__title {
  width: 100%;
  height: auto;
}
.p-kikan__content {
  width: 100%;
  height: auto;
}

/* #p-product
----------------------------------------------------------------- */
@media screen and (max-width: 767px ) {
  .p-product {
    width: 61rem;
  }
}
.p-product__title {
  width: 100%;
  height: auto;
}
.p-product__content {
  width: 100%;
  height: auto;
}

/* #submit
----------------------------------------------------------------- */
.p-submit__title {
  width: 100%;
  height: auto;
}
.p-submit__main {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__main {
    padding-bottom: 5rem;
  }
}
.p-submit__mainInner {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__mainInner {
    padding-top: 3rem;
  }
}
.p-submit__text1 {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-submit__text1 {
    width: 95%;
    margin-inline: auto;
    font-size: 2.8rem;
  }
}
.p-submit__text1 span {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__text1 span {
    font-size: 2.5rem;
  }
}
.p-submit__steps {
  width: 118.7rem;
  margin-top: 5rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 8.4rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__steps {
    width: 56rem;
    margin-top: 2.5rem;
    row-gap: 4rem;
  }
}
.p-submit__step {
  width: 100%;
  position: relative;
  padding-block: 2.4rem;
  position: relative;
  background-color: white;
  border: 3px solid #381100;
}
@media screen and (max-width: 767px ) {
  .p-submit__step {
    border: 2px solid #381100;
  }
}
.p-submit__step--03 {
  padding-block: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__step--03 {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px ) {
  .p-submit__step {
    padding-block: 1.5rem;
  }
}
.p-submit__step:first-of-type {
  margin-top: 0;
}
.p-submit__step:after {
  content: "";
  display: block;
  width: 9.1rem;
  height: 3.6rem;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: -6.6rem;
  background: url(/_var/lp/unilever/unilever_250701/images/submit_bullet.png) no-repeat center/contain;
}
@media screen and (max-width: 767px ) {
  .p-submit__step:after {
    width: 4.2rem;
    height: 1.6rem;
    bottom: -3rem;
  }
}
.p-submit__step:last-of-type:after {
  display: none;
}
.p-submit__stepNumber {
  position: absolute;
  top: -8.2rem;
  left: -6rem;
  width: 17.3rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepNumber {
    top: -2.5rem;
    left: -3.5rem;
    width: 7.3rem;
  }
}
.p-submit__stepNumber--stepNumber1 {
  top: -2.7rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepNumber--stepNumber1 {
    top: -2rem;
  }
}
.p-submit__stepText {
  text-align: center;
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 1.2888888889;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepText {
    font-size: 21px;
    font-size: 2.1rem;
    line-height: 1.2857142857;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin-top: 1rem;
  }
}
.p-submit__stepText a {
  display: inline-block;
  color: #004083;
  text-decoration: none;
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-submit__stepText a:hover {
  opacity: 0.7;
}
.p-submit__stepText small {
  display: inline-block;
  font-size: 3.8rem;
  line-height: 1.6578947368;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepText small {
    font-size: 2.2rem;
  }
}
.p-submit__stepText .red {
  color: #e93323;
}
.p-submit__stepText:first-of-type {
  margin-top: 0;
}
.p-submit__stepButton {
  width: 104.4rem;
  margin-top: 2rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepButton {
    width: 46.8rem;
    margin-top: 2rem;
  }
}
.p-submit__stepCaption {
  width: 101.4rem;
  margin-top: 2rem;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.6666666667;
  letter-spacing: 0em;
  font-weight: 500;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  color: #e93323;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepCaption {
    width: 44.5rem;
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}
.p-submit__stepImage1 {
  width: 41.6rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepImage1 {
    width: 20rem;
  }
}
.p-submit__submit01 {
  display: block;
  width: 92.1rem;
  margin-top: 2rem;
  margin-inline: auto;
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1);
  opacity: 1;
}
.p-submit__submit01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px ) {
  .p-submit__submit01 {
    width: 43rem;
    margin-top: 0.5rem;
  }
}
.p-submit__submit02 {
  width: 90.6rem;
  margin-top: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-submit__submit02 {
    width: 43rem;
    margin-top: 0.5rem;
  }
}
.p-submit__submit03 {
  width: 90.6rem;
  margin-top: 7rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-submit__submit03 {
    width: 47rem;
    margin-top: 5rem;
  }
}
.p-submit__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__flex {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-submit__stepImage2 {
  width: 23.4rem;
  margin-top: 4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepImage2 {
    width: 11.2rem;
    margin-top: 1.5rem;
  }
}
.p-submit__stepTitle {
  width: 107.3rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepTitle {
    width: 53.6rem;
  }
}
.p-submit__stepInner {
  width: 113rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
  padding-block: 5rem 3rem;
  border: 3px solid #381100;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepInner {
    width: 52.1rem;
    border: 2px solid #381100;
    padding-block: 2rem 2rem;
  }
}
.p-submit__stepInquiry {
  display: block;
  width: 105.9rem;
  height: auto;
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-submit__stepInquiry {
    width: 46.5rem;
    margin-top: 2rem;
  }
}
.p-submit__notes {
  width: 117.6rem;
  font-size: 3rem;
  line-height: 1.5333333333;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: 7rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-submit__notes {
    width: 56rem;
    font-size: 2.5rem;
    margin-top: 5rem;
  }
}
.p-submit__notes .red {
  color: #e93323;
}

/* #p-photo
----------------------------------------------------------------- */
.p-photo {
  margin-inline: auto;
}
.p-photo__title {
  width: 100%;
  height: auto;
}
.p-photo__main {
  width: 100%;
  height: auto;
  position: relative;
}
.p-photo__mainInner {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-photo__mainInner {
    padding-top: 2rem;
  }
}
.p-photo__image {
  width: 115.7rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px ) {
  .p-photo__image {
    width: 61.7rem;
  }
}
.p-photo__text {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 600;
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-photo__text {
    width: 59rem;
    margin-inline: auto;
    text-align: justify;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 600;
    margin-top: 2.5rem;
  }
}
.p-photo__caution {
  width: 126.8rem;
  margin-top: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid #ff0000;
  background-color: #ff0000;
}
@media screen and (max-width: 767px ) {
  .p-photo__caution {
    width: 60rem;
    margin-top: 2rem;
  }
}
.p-photo__cautionTitle {
  height: 5.8rem;
  line-height: 5.2rem;
  font-weight: 600;
  font-size: 4rem;
  background-color: #ff0000;
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
  padding-inline: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-photo__cautionTitle {
    height: 4rem;
    line-height: 3.2rem;
    font-size: 2.6rem;
    padding-inline: 1.5rem;
  }
}
.p-photo__cautionList {
  background-color: #ffffff;
  font-weight: 500;
  font-size: 4rem;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
  padding-block: 1rem;
  padding-inline: 3rem;
  text-align: justify;
}
@media screen and (max-width: 767px ) {
  .p-photo__cautionList {
    font-size: 2.6rem;
    padding-block: 1rem;
    padding-inline: 1.5rem;
  }
}
.p-photo__cautionList li {
  padding-left: 1em;
  position: relative;
}
.p-photo__cautionList li:before {
  content: "※";
  display: inline;
  position: absolute;
  left: 0;
  top: 0rem;
}
.p-photo__example {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  padding-inline: 5.7rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: 7rem;
  background: #e2e1e1;
}
@media screen and (max-width: 767px ) {
  .p-photo__example {
    padding-top: 2rem;
    padding-bottom: 3rem;
    padding-inline: 3rem;
    margin-top: 4rem;
  }
}
.p-photo__exampleTitle {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  font-size: 4.7rem;
  color: #945923;
}
@media screen and (max-width: 767px ) {
  .p-photo__exampleTitle {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    font-size: 3.2rem;
  }
}
.p-photo__exampleTitle:before {
  content: "";
  display: block;
  width: 11.8rem;
  height: 11.8rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/_var/lp/unilever/unilever_250701/images/photo_caution_title.png);
}
@media screen and (max-width: 767px ) {
  .p-photo__exampleTitle:before {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.p-photo__exampleText {
  font-size: 4rem;
  line-height: 1.5;
  margin-top: 1.5rem;
  text-align: justify;
  font-weight: 600;
}
@media screen and (max-width: 767px ) {
  .p-photo__exampleText {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-top: 1rem;
  }
}
.p-photo__exampleList {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-top: 1.5rem;
  padding-left: 0.8em;
}
@media screen and (max-width: 767px ) {
  .p-photo__exampleList {
    font-size: 3.2rem;
    margin-top: 1rem;
    padding-left: 0;
  }
}
.p-photo__exampleList li {
  position: relative;
  padding-left: 1em;
  color: #000000;
  font-weight: 500;
}
.p-photo__exampleList li:before {
  display: block;
  width: 0.9em;
  height: 0.9em;
  background-color: #000000;
  content: "";
  display: inline;
  position: absolute;
  left: 0;
  top: 0.3em;
}
@media screen and (max-width: 767px ) {
  .p-photo__exampleList li:before {
    width: 0.8em;
    height: 0.8em;
    top: 0.4em;
  }
}

/* #reason
----------------------------------------------------------------- */
.p-reason {
  counter-reset: number 0;
}
.p-reason__title {
  width: 100%;
  height: auto;
}
.p-reason__main {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-reason__main {
    padding-bottom: 3rem;
  }
}
.p-reason__mainBg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.p-reason__mainBg img,
.p-reason__mainBg picture {
  height: 100%;
}
.p-reason__mainInner {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-reason__mainInner {
    padding-top: 3rem;
  }
}
.p-reason__text {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 767px ) {
  .p-reason__text {
    font-size: 3rem;
  }
}
.p-reason__list {
  width: 100%;
  box-sizing: border-box;
  margin-top: 4.5rem;
}
@media screen and (max-width: 767px ) {
  .p-reason__list {
    margin-top: 2.5rem;
  }
}
.p-reason__list:first-of-type {
  margin-top: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-reason__list:first-of-type {
    margin-top: 2rem;
  }
}
.p-reason__listTitle {
  margin-left: 0;
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1.2608695652;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  color: #945923;
  padding-left: 5rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.p-reason__listTitle:before {
  counter-increment: number 1;
  content: counter(number) ".";
}
@media screen and (max-width: 767px ) {
  .p-reason__listTitle {
    padding-left: 2.5rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px ) {
  .p-reason__listTitle--condensed {
    font-size: 3rem;
    letter-spacing: -0.04em;
  }
}
.p-reason__listDescription {
  font-size: 23px;
  font-size: 2.3rem;
  line-height: 1.5217391304;
  letter-spacing: 0em;
  font-weight: 500;
  padding-left: 10.5rem;
  margin-top: 2rem;
}
.p-reason__listDescription a {
  display: inline-block;
  color: #65aadd;
  text-decoration: underline;
}
.p-reason__listDescription a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px ) {
  .p-reason__listDescription {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.3636363636;
    letter-spacing: 0em;
    font-weight: 500;
    padding-left: 4.5rem;
    padding-right: 2rem;
    margin-top: 1rem;
  }
}

/* #cancel
----------------------------------------------------------------- */
.p-cancel__title {
  width: 100%;
  height: auto;
}
.p-cancel__main {
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-cancel__main {
    padding-bottom: 3rem;
  }
}
.p-cancel__mainInner {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-inline: 8rem;
}
@media screen and (max-width: 767px ) {
  .p-cancel__mainInner {
    padding-top: 1rem;
    padding-inline: 4rem;
  }
}
.p-cancel__text {
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px ) {
  .p-cancel__text {
    font-size: 3.1rem;
    text-align: justify;
  }
}
.p-cancel__list li {
  position: relative;
  text-indent: 1em;
  font-size: 3.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px ) {
  .p-cancel__list li {
    text-align: justify;
    font-size: 3.1rem;
  }
}
.p-cancel__list li:before {
  display: block;
  width: 0.9em;
  height: 0.9em;
  background-color: #000000;
  content: "";
  display: inline;
  position: absolute;
  left: 0;
  top: 0.3em;
}
@media screen and (max-width: 767px ) {
  .p-cancel__list li:before {
    width: 0.8em;
    height: 0.8em;
    top: 0.4em;
  }
}

/* #qa
----------------------------------------------------------------- */
.p-qa {
  border-radius: 0;
}
.p-qa__title {
  width: 100%;
  height: auto;
}
.p-qa__main {
  width: 100%;
  background: #ffffff;
}
.p-qa__list {
  width: 100%;
  border-bottom: 3px solid #e2e1e1;
}
@media screen and (max-width: 767px ) {
  .p-qa__list {
    width: 100%;
    border-bottom: 2px solid #e2e1e1;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-qa__list:last-of-type {
  border-bottom: 0 solid #e2e1e1;
}
.p-qa__list:last-of-type .p-qa__answerInner {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-qa__list:last-of-type .p-qa__answerInner {
    padding-bottom: 5rem;
  }
}
.p-qa__question {
  cursor: pointer;
  padding-block: 2rem;
  padding-inline: 6rem;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px ) {
  .p-qa__question {
    padding-block: 1.5rem;
    padding-inline: 3rem;
  }
}
.p-qa__question:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/_var/lp/unilever/unilever_250701/images/qa_plus.png);
  position: absolute;
  right: 5rem;
  top: 6.8rem;
}
@media screen and (max-width: 767px ) {
  .p-qa__question:after {
    width: 1.8rem;
    height: 1.8rem;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.p-qa__question.is-open:after {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/_var/lp/unilever/unilever_250701/images/qa_minus.png);
}
.p-qa__questionInner {
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
@media screen and (max-width: 767px ) {
  .p-qa__questionInner {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-qa__questionInner:before {
  content: "";
  display: block;
  width: 12.4rem;
  height: 10.6rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/_var/lp/unilever/unilever_250701/images/qa_question.png);
  background-size: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-qa__questionInner:before {
    width: 7.1rem;
    height: 6.3rem;
    background-size: contain;
  }
}
.p-qa__questionContent {
  width: 100%;
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #3e3a39;
}
@media screen and (max-width: 767px ) {
  .p-qa__questionContent {
    font-size: 3rem;
  }
}
.p-qa__questionContent--condensed {
  letter-spacing: -0.06em;
}
.p-qa__questionContent .long {
  font-size: 4.9rem;
  transform-origin: left;
  display: inline-block;
  white-space: nowrap;
}
.p-qa__questionContent .long--80 {
  transform: scaleX(0.8);
}
.p-qa__questionContent .long--90 {
  transform: scaleX(0.9);
}
@media screen and (max-width: 767px ) {
  .p-qa__questionContent .long {
    font-size: 3rem;
    white-space: normal;
  }
  .p-qa__questionContent .long--80 {
    transform: scaleX(1);
  }
  .p-qa__questionContent .long--90 {
    transform: scaleX(1);
  }
}
.p-qa__answer {
  box-sizing: border-box;
  width: 100%;
  background-color: #e2e1e1;
  overflow: hidden;
  transition: height 0.8s;
}
.p-qa__answer p {
  font-size: 3.3rem;
  line-height: 1.5151515152;
  font-weight: 500;
  text-align: justify;
  word-break: break-all;
}
@media screen and (max-width: 767px ) {
  .p-qa__answer p {
    font-size: 3rem;
  }
  .p-qa__answer p.splarge {
    font-size: 3rem;
  }
}
.p-qa__answer p small {
  font-size: 2.5rem;
  line-height: 1.28;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 767px ) {
  .p-qa__answer p small {
    font-size: 2.2rem;
  }
}
.p-qa__answer p.caption {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px ) {
  .p-qa__answer p.caption {
    font-size: 2rem;
    white-space: nowrap;
  }
}
.p-qa__answer p.left {
  text-align: left;
}
.p-qa__answer p .red {
  color: #e93323;
  font-weight: 700;
}
.p-qa__answer p strong {
  color: #e93323;
  font-weight: 700;
}
.p-qa__answer p .large {
  font-size: 4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px ) {
  .p-qa__answer p .large {
    font-size: 3.4rem;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 767px ) {
  .p-qa__answer p .condensed {
    letter-spacing: -0.02em;
  }
}
.p-qa__answer p.nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px ) {
  .p-qa__answer p.nowrap {
    white-space: normal;
  }
}
.p-qa__answer a {
  display: inline-block;
  color: #65aadd;
  text-decoration: underline;
}
.p-qa__answer a:hover {
  text-decoration: none;
}
.p-qa__answerInner {
  width: 100%;
  padding-block: 2rem;
  padding-inline: 6rem;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
.p-qa__answerInner--center {
  align-items: center;
}
.p-qa__answerInner--center .p-qa__answerContent {
  padding-top: 0;
}
@media screen and (max-width: 767px ) {
  .p-qa__answerInner {
    padding-block: 2rem;
    padding-inline: 3rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.p-qa__answerInner:before {
  content: "";
  display: block;
  width: 12.4rem;
  height: 10.6rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/_var/lp/unilever/unilever_250701/images/qa_answer.png);
  background-size: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-qa__answerInner:before {
    width: 7.1rem;
    height: 6.3rem;
    background-size: contain;
  }
}
.p-qa__answerContent {
  width: 100%;
  padding-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-qa__answerContent {
    padding-top: 0.5rem;
  }
}
.p-qa__answerContent--full {
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-qa__answerContent--full {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-qa__image {
  width: 106.6rem;
  margin-block: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-qa__image {
    width: 48.3rem;
    margin-top: 3rem;
  }
}
.p-qa__button {
  width: 104.4rem;
  margin-top: 2rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  position: relative;
  left: -4rem;
}
@media screen and (max-width: 767px ) {
  .p-qa__button {
    width: 46.8rem;
    margin-top: 2rem;
    left: 0;
  }
}
.p-qa__answerInquiry {
  display: block;
  width: 104.4rem;
  margin-top: 2rem;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  left: -4rem;
}
@media screen and (max-width: 767px ) {
  .p-qa__answerInquiry {
    width: 46.4rem;
    margin-top: 2rem;
    left: 0;
  }
}

/* #term
----------------------------------------------------------------- */
.p-terms {
  background: #ffffff;
}
.p-terms__main {
  padding: 6rem 9rem 8rem 9rem;
}
@media screen and (max-width: 767px ) {
  .p-terms__main {
    padding: 4rem 3rem;
  }
}
.p-terms__bgText {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  text-align: center;
  padding-inline: 1rem;
  background: #000000;
  color: #ffffff;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  margin-top: 2rem;
}
.p-terms__bgText + .p-terms__list {
  padding-left: 2em;
  margin-top: 1rem;
}
.p-terms__dl {
  margin-top: 6rem;
}
.p-terms__dl:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px ) {
  .p-terms__dl {
    margin-top: 4rem;
  }
}
.p-terms__dt {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px ) {
  .p-terms__dt {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.5;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (max-width: 767px ) {
  .p-terms__dt--border:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background: #000000;
  }
}
.p-terms__dd {
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.6538461538;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 1rem;
}
.p-terms__dd bold {
  font-weight: 700;
}
.p-terms__dd strong {
  font-weight: 700;
  color: #e93323;
}
@media screen and (max-width: 767px ) {
  .p-terms__dd {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.4615384615;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.p-terms__list li {
  position: relative;
  padding-left: 1em;
}
.p-terms__list li:before {
  display: block;
  width: 0.9em;
  height: 0.9em;
  background-color: #000000;
  content: "";
  display: inline;
  position: absolute;
  left: 0;
  top: 0.4em;
}
@media screen and (max-width: 767px ) {
  .p-terms__list li:before {
    width: 0.8em;
    height: 0.8em;
    top: 0.4em;
  }
}
.p-terms__list li.red:before {
  background-color: #e93323;
}
.p-terms__list li em {
  color: #e93323;
  font-weight: 700;
  font-style: normal;
}
.p-terms__inquiry {
  display: block;
  width: 104.4rem;
  height: -moz-fit-content;
  height: fit-content;
  margin-block: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-terms__inquiry {
    width: 46.8rem;
  }
}
.p-terms__link {
  margin-top: 3rem;
  font-size: 31px;
  font-size: 3.1rem;
  line-height: 1.1612903226;
  letter-spacing: -0.007em;
  font-weight: 500;
  color: #2f80bb;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border-bottom: 2px solid #2f80bb;
  transition: border-bottom 0.3s;
}
.p-terms__link:hover {
  border-bottom: 2px solid transparent;
}
@media screen and (max-width: 767px ) {
  .p-terms__link {
    margin-top: 1rem;
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.1333333333;
    letter-spacing: -0.007em;
    font-weight: 500;
  }
}

/* #bottom
----------------------------------------------------------------- */
.p-bottom {
  padding-block: 12rem 12rem;
}
@media screen and (max-width: 767px ) {
  .p-bottom {
    padding-block: 9rem 9rem;
  }
}
.p-bottom__submit {
  width: 119rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px ) {
  .p-bottom__submit {
    width: 61rem;
  }
}

/* #contact
----------------------------------------------------------------- */
.p-contact {
  width: 100%;
  background-color: #ffffff;
  color: #381100;
}
.p-contact__head {
  width: 100%;
  height: auto;
  background: #381100;
  display: grid;
  place-content: center;
}
.p-contact__title {
  width: 140rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px ) {
  .p-contact__title {
    width: 100%;
  }
}
.p-contact__main {
  width: 100%;
  background: #ffffff;
  padding-block: 5rem;
}
@media screen and (max-width: 767px ) {
  .p-contact__main {
    padding-block: 5rem;
  }
}
.p-contact__main > *:first-child {
  margin-top: 0;
}
.p-contact__text {
  text-align: center;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.5384615385;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 3rem;
  color: #000000;
}
.p-contact__text em {
  color: #e93323;
  font-style: normal;
}
.p-contact__subtitle {
  text-align: center;
  display: flex;
  align-items: center;
  width: 142rem;
  margin-inline: auto;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-top: 3rem;
}
@media screen and (max-width: 767px ) {
  .p-contact__subtitle {
    width: 67.2rem;
  }
}
.p-contact__subtitle:nth-of-type(2) {
  margin-top: 7rem;
}
.p-contact__subtitle span {
  width: 100%;
  text-align: center;
}
.p-contact__subtitle::before, .p-contact__subtitle:after {
  content: "";
  display: block;
  width: 38.4rem;
  height: min(0.3rem, 3px);
  background: #381100;
  flex-shrink: 0;
}
@media screen and (max-width: 767px ) {
  .p-contact__subtitle::before, .p-contact__subtitle:after {
    width: 11.4rem;
  }
}
.p-contact__inquiry {
  display: block;
  width: 104.4rem;
  margin-top: 2rem;
  margin-inline: auto;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px ) {
  .p-contact__inquiry {
    width: 46.8rem;
    margin-top: 3rem;
  }
}
.p-contact__h3 {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-contact__h3 a {
  opacity: 1;
  transition: opacity 0.3s;
  border-bottom: 3px solid #381100;
}
.p-contact__h3 a:hover {
  opacity: 0.7;
}
.p-contact__h4 {
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-contact__h4 {
    font-size: 31px;
    font-size: 3.1rem;
    line-height: 1.2580645161;
    letter-spacing: 0em;
    font-weight: 500;
  }
}
.p-contact__tel {
  text-align: center;
  font-size: 47px;
  font-size: 4.7rem;
  line-height: 1.085106383;
  letter-spacing: 0.16em;
  font-weight: 400;
  margin-top: 2rem;
}
@media screen and (max-width: 767px ) {
  .p-contact__tel {
    margin-top: 1rem;
  }
}
.p-contact__tel a {
  color: #381100;
}
.p-contact__tel--mt {
  margin-top: 4rem;
}
@media screen and (max-width: 767px ) {
  .p-contact__tel--mt {
    margin-top: 1rem;
  }
}
.p-contact__info {
  margin-top: 4rem;
}
.p-contact__info dt {
  text-align: center;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-top: 3rem;
}
.p-contact__info dd {
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 1.5rem;
}
.p-contact__captionBg {
  width: 140rem;
  height: 3.6rem;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  text-align: center;
  background: #381100;
  color: #ffffff;
  margin-inline: auto;
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px ) {
  .p-contact__captionBg {
    width: 66rem;
  }
}
.p-contact__caption {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  margin-top: 3rem;
  color: #000000;
}
.p-contact__qa {
  margin-top: 5rem;
}
.p-contact__qaTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 700;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.p-contact__qaTitle:after {
  content: "";
  display: block;
  width: 3rem;
  height: 2rem;
  background: #381100;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.p-contact__qaButton {
  display: block;
  width: 61.4rem;
  height: auto;
  margin-inline: auto;
  margin-top: 1rem;
  filter: drop-shadow(0.3rem 0.3rem 0.3rem rgba(32, 23, 20, 0.2));
  opacity: 1;
  transition: all 0.3s;
}
.p-contact__qaButton:hover {
  opacity: 0.8;
}

.p-gotop {
  position: fixed;
  bottom: 2rem;
  right: 3rem;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px ) {
  .p-gotop {
    bottom: 3rem;
    right: 3rem;
  }
}
.p-gotop.is-active {
  opacity: 1;
  pointer-events: all;
}
.p-gotop a {
  display: block;
  width: 16.2rem;
  height: auto;
  transform: translateY(0);
  transition: all 0.3s;
}
.p-gotop a:hover {
  transform: translateY(0.3rem);
}

/* #pcsp
----------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .u-pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-spNone {
    display: none !important;
  }
}
/* ==========================================================================
 #Foundation
========================================================================== */
/* ==========================================================================
 #Layout
========================================================================== */
/* ==========================================================================
 #Component
========================================================================== */
/* ==========================================================================
 #Project
========================================================================== */
/* ==========================================================================
 #Utility
========================================================================== */
/*# sourceMappingURL=maps/style.css.map */
