@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600&display=swap");
html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
  display: block;
}

span {
  display: block;
}

h1 {
  font-size: 0;
}

ul,
ol,
li {
  list-style: none;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  display: block;
}

img,
picture {
  width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

input, textarea, button {
  color: #F0A897;
  background-color: #FFFFFF;
  margin: 0em;
  padding: 0;
  border-width: 0;
  border-style: none;
  border-color: transparent;
}

input, textarea {
  cursor: text;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: none;
}

@media screen and (min-width: 1023px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  height: 100%;
}

body {
  background: #FFFFFF;
  color: #6C5F5F;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

a:-webkit-any-link {
  color: #6C5F5F;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
  transform: scale(1.01);
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

span {
  display: inline;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
@media screen and (min-width: 767px) {
  .sp {
    display: none !important;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-05s {
  animation-delay: 0.5s;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}

@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}

@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

.js_fadein, .js_fadeinup {
  opacity: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../image/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.l-header {
  width: 100%;
  padding: 40px 36px 36px 36px;
}

.l-footer {
  width: 100%;
  padding: 50px 56px;
}

.l-container--all {
  width: 100%;
  margin: 0 auto;
  padding-top: 148px;
  padding-bottom: 148px;
}

.l-container--large {
  padding-top: 148px;
  padding-bottom: 148px;
  padding-right: 144px;
  padding-left: 144px;
  margin: 0 auto;
}

.l-container--medium {
  padding-top: 148px;
  padding-bottom: 148px;
  padding-right: 200px;
  padding-left: 200px;
  margin: 0 auto;
}

.l-container--small {
  padding-top: 148px;
  padding-bottom: 148px;
  padding-right: 312px;
  padding-left: 312px;
  margin: 0 auto;
}

.l-footer {
  padding: 56px 104px;
  margin: 0 auto;
}

@media screen and (min-width: 1537px) {
  .l-container--large {
    padding-right: calc(30vw - 320px);
    padding-left: calc(30vw - 320px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 1365px) {
  .l-container--large {
    padding-top: 104px;
    padding-bottom: 104px;
    padding-right: 9%;
    padding-left: 9%;
    margin: 0 auto;
  }
  .l-container--medium {
    padding-top: 104px;
    padding-bottom: 104px;
    padding-right: 18%;
    padding-left: 18%;
    margin: 0 auto;
  }
  .l-container--small {
    padding-top: 104px;
    padding-bottom: 104px;
    padding-right: 18%;
    padding-left: 18%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 20px 12px 16px 12px;
  }
  .l-container--all {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .l-container--large {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 24px;
    padding-left: 24px;
    margin: 0 auto;
  }
  .l-container--medium {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 24px;
    padding-left: 24px;
    margin: 0 auto;
  }
  .l-container--small {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-right: 24px;
    padding-left: 24px;
    margin: 0 auto;
  }
}
.c-header03 {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 400;
  color: #F0A897;
  margin-bottom: 24px;
  display: inline-block;
}

.c-header03--circle {
  padding-left: 24px;
  position: relative;
}

.c-header04 {
  line-height: 1.72;
  font-size: 37px;
  color: #594242;
  letter-spacing: 0.07em;
  margin-bottom: 32px;
}

.c-header04--engLeft {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 52px;
}

.c-header04--engLeft::before {
  display: block;
  content: "";
  height: 28px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

.c-header04--engCenter {
  position: relative;
  margin-bottom: 48px;
  padding-bottom: 52px;
}

.c-header04--engCenter::before {
  display: block;
  content: "";
  height: 28px;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

.c-header03--circle::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #F0A897;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.c-header05 {
  font-size: 20px;
  color: #DE7676;
}

.c-sliderArrows__Next {
  margin-left: 16px;
}

.c-button {
  width: 248px;
  height: 48px;
  background-color: #DE7676;
  border-radius: 9999px !important;
  margin: 0 auto;
  text-align: center;
  line-height: 48px;
  color: #FFFFFF;
}

.c-button a:-webkit-any-link {
  color: #FFFFFF;
}

.c-card {
  padding: 32px;
  background-color: #FAFAFA;
}

.c-cardImg {
  width: 188px;
  margin: 12px auto 16px;
}

.c-exampleWrap {
  display: grid;
  -moz-column-gap: 88px;
       column-gap: 88px;
  background-color: #FAFAFA;
  grid-template-columns: 1fr 515px;
  grid-template-rows: 1fr 1fr;
}

.c-exampleHeader {
  grid-column: 1/2;
  grid-row: 1/3;
}

.c-exampleDetail {
  grid-column: 1/2;
  grid-row: 1/3;
}

.c-example {
  grid-column: 2/3;
  grid-row: 1/3;
  display: grid;
  grid-template-columns: repeat(auto-fit, 170px);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
  width: 542px;
  height: 0;
}

.c-exampleItem {
  position: relative;
}

.c-exampleItem--end {
  align-self: end;
}

.c-exampleTxt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 71%;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  font-size: 14px;
}

.c-exampleTxt--white {
  color: #FFFFFF;
}

.c-sliderArrows__PrevImg {
  width: 24px;
  height: 55px;
}

.c-sliderArrows__NextImg {
  width: 24px;
  height: 55px;
}

.c-sliderArrows__Prev {
  position: absolute;
  left: -64px;
}

.c-sliderArrows__Next {
  position: absolute;
  right: -64px;
}

.c-form {
  background-color: #FAFAFA;
  border-radius: 8px;
  padding: 14px 16px;
  width: 100%;
  margin-bottom: 8px;
  display: inline;
}

@media screen and (min-width: 1537px) {
  .c-exampleWrap {
    grid-template-columns: 45% 43%;
    height: calc(13.5vw + 382px);
  }
  .c-example {
    background-color: #FAFAFA;
    grid-template-columns: 36% 36% 36%;
    grid-template-rows: 1fr 1fr;
    width: 100%;
  }
  .c-exampleItem {
    padding-top: 110%;
  }
}
@media screen and (max-width: 1365px) {
  .c-header04 {
    font-size: 32px;
  }
  .c-exampleWrap {
    display: flex;
    flex-direction: column;
  }
  .c-exampleHeader {
    order: 1;
  }
  .c-exampleDetail {
    order: 3;
  }
  .c-example {
    display: grid;
    grid-template-columns: repeat(auto-fit, 16.2%);
    -moz-column-gap: 4px;
         column-gap: 4px;
    row-gap: 16px;
    width: 100%;
    height: auto;
    margin: 0 auto 24px;
    order: 2;
  }
  .c-exampleItem {
    position: relative;
  }
  .c-exampleItem--end {
    align-self: end;
  }
  .c-exampleTxt {
    width: 90%;
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .c-example {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    -moz-column-gap: 24px;
         column-gap: 24px;
    row-gap: 24px;
    width: 100%;
  }
  .c-exampleItem {
    position: relative;
  }
  .c-exampleItem--end {
    align-self: end;
  }
  .c-exampleTxt {
    width: 90%;
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .c-button {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-header03 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .c-header03--circle {
    padding-left: 16px;
  }
  .c-header04 {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .c-header04--engLeft {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 36px;
  }
  .c-header04--engLeft::before {
    height: 24px;
  }
  .c-header04--engCenter {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 36px;
    text-align: start !important;
  }
  .c-header04--engCenter::before {
    display: block;
    content: "";
    height: 28px;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .c-example {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 12px;
    width: 100%;
    margin: 0px auto 32px;
  }
  .c-sliderArrows__Prev {
    position: static;
  }
  .c-sliderArrows__Next {
    position: static;
    margin-left: 0px;
  }
  .c-sliderArrows__PrevImg {
    width: 12px;
    height: 28px;
  }
  .c-sliderArrows__NextImg {
    width: 12px;
    height: 28px;
  }
}
.p-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 99999;
}

.p-headerLogo {
  width: 240px;
  height: auto;
}

.p-footer {
  background-color: #F0A897;
  padding: 64px 104px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
  position: relative;
  z-index: 8888;
}

.p-footer__logo {
  width: 224px;
  margin-bottom: 32px;
}

.p-footer__cr {
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 200;
  letter-spacing: 0;
}

.p-footer__link {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.p-footer__link a:-webkit-any-link {
  color: #FFFFFF;
}

.p-footer__otherSiteCard {
  width: 256px;
  height: 80px;
  padding: 6px;
  background-color: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 16px;
}

.p-footer__otherSiteLink {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.p-footer__otherSiteThumb {
  width: 68px;
  height: 68px;
}

.p-footer__otherSiteTxt {
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .p-header {
    position: relative;
    margin-bottom: -124px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    flex-direction: column-reverse;
    padding: 64px 56px 44px;
  }
  .p-headerLogo {
    width: 51%;
    height: auto;
    max-width: 240px;
  }
  .p-footer__otherSite {
    margin-top: -104px;
    margin-bottom: 32px;
  }
  .p-footer__info {
    text-align: center;
  }
  .p-footer__logo {
    margin-right: auto;
    margin-left: auto;
  }
  .p-footer__link {
    font-size: 13px;
    margin: 0 auto;
    justify-content: center;
  }
}
.is-menuOpen .p-header {
  z-index: 9999;
}

.p-menu {
  height: 100vh;
  position: fixed;
  top: 0px;
  right: -485px;
  width: 485px;
  background-color: #F0A897;
  overscroll-behavior: contain;
  overflow-y: scroll;
  touch-action: pan-y;
  transition: opacity 0.5s ease-in-out, transform 0s 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.5s;
}

.is-menuOpen .p-menu {
  right: 0px;
}

.p-menuButton {
  margin: 0 0 0 auto;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background-color: #F0A897;
  padding: 26px 20px;
  z-index: 99999;
  position: fixed;
  top: 40px;
  right: 36px;
}

.p-menuButtonItem {
  width: 40px;
  height: 3px;
  border-radius: 99px;
  margin: 0 0 0 auto;
  background-color: #FFFFFF;
  transition: transform 0.5s;
}

.p-menuButtonItemTop {
  margin-bottom: 7px;
}

.p-menu a {
  pointer-events: none;
}

.is-menuOpen .p-menu a {
  pointer-events: auto;
}

.is-menuOpen .p-menuButtonItemTop {
  transform: rotate(45deg);
  margin-bottom: 0px;
}

.is-menuOpen .p-menuButtonItemBottom {
  transform: rotate(-45deg);
  margin-top: -3px;
}

.p-nav {
  width: 161px;
  margin: 0 auto 48px;
}

.p-contactButton {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  border: 2px solid #F0A897;
  padding: 24px 20px;
  position: fixed;
  top: 40px;
  right: 144px;
}

.p-contactButton--cta {
  width: 309px;
  height: 80px;
  border-radius: 9999px;
  background-color: #FFFFFF;
  border: 2px solid #F0A897;
  padding: 10px 32px 10px 28px;
  position: fixed;
  top: 40px;
  right: 256px;
}

.p-contactButton__txt {
  color: #F0A897;
  margin-bottom: 0;
  line-height: 1.25;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  vertical-align: center;
}

.p-contactButton__tel {
  color: #F0A897;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.25;
}

.p-contactButton__icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  padding-top: 4px;
  margin-right: 8px;
}

.p-nav__menuDot {
  padding-left: 28px;
  position: relative;
  font-size: 18px;
  margin-bottom: 24px;
}

.p-nav__menuDot:-webkit-any-link {
  color: #FFFFFF;
}

.p-nav__menuDot::before {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 9999px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.p-menuLinks {
  padding-top: 120px;
  padding-bottom: 80px;
  margin: 0 auto;
}

.p-menuButtonTxt {
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 0 auto;
  margin-top: 4px;
  line-height: 1;
  font-size: 14px;
}

.is-menuOpen .p-menuButtonTxt {
  display: none;
}

@media screen and (max-width: 900px) {
  .p-menuButton {
    width: 56px;
    height: 56px;
    top: 5vw;
    right: 14px;
    padding: 15px 11px;
  }
  .p-contactButton {
    display: none;
  }
  .p-contactButton--cta {
    width: 56px;
    height: 56px;
    top: 5vw;
    right: 80px;
    padding: 17px 14px;
  }
  .p-contactButton__txt {
    display: none;
  }
  .p-contactButton__tel {
    font-size: 0px;
  }
  .p-menuButtonItem {
    width: 33px;
  }
  .p-menuButtonTxt {
    font-size: 12px;
  }
  .p-menuButtonTxt {
    margin-top: 2px;
  }
  .p-menu {
    width: 100%;
    right: -100%;
    display: flex;
    justify-content: center;
    z-index: 9999;
  }
  .p-menuLink {
    padding-top: 150px;
  }
  .p-contactButton__icon {
    width: 26px;
    height: 26px;
    margin-right: 0;
    padding-top: 0;
    margin-top: -4px;
    margin-left: -1px;
  }
  .p-contactButton__icon--process {
    margin-right: 0;
    padding-top: 0;
    margin-top: 0;
    margin-left: 0;
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}
.p-kv {
  position: relative;
  top: 144px;
}

.p-kv__imgWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.p-kv__imgBox--01 {
  width: 50%;
}

.p-kv__imgBox--02 {
  width: 42%;
  margin-top: 24.5%;
}

.p-kv__copy {
  position: absolute;
  width: 42%;
  top: 20%;
  right: 0;
  transform: translateY(-50%);
  color: #594242;
}

.p-kv__copyJp {
  font-size: 45px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  padding-bottom: 3%;
  letter-spacing: 0.07em;
}

.p-kv__txt {
  font-size: 18px;
  line-height: 2.5;
  font-weight: 500;
  width: 80%;
  min-width: 380px;
}

.p-intro {
  padding-top: 0;
  padding-bottom: 0;
  margin: -4% 0 0;
  width: 62%;
}

.p-intro__txt--header {
  font-size: 29px;
  color: #F0A897;
  margin-bottom: 3%;
}

.p-intro__txt {
  font-size: 18px;
  line-height: 2.5;
  font-weight: 500;
  color: #594242;
}

.p-about {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 72px;
       column-gap: 72px;
  padding-top: 10%;
}

.p-about__prof {
  min-width: 456px;
  width: 40%;
}

.p-about__content {
  width: 52%;
  margin-top: 8px;
}

.p-about__profImg {
  margin-bottom: 8px;
}

.p-about__profTxt {
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
}

.p-about__copy {
  padding-bottom: 32px;
}

.p-about__copy::before {
  background: url("../image/about.svg") no-repeat left top/contain;
  height: 20px;
}

.p-feature__copy::before {
  background: url("../image/feature.svg") no-repeat left top/contain;
}

.p-process__copy::before {
  background: url("../image/process.svg") no-repeat center top/contain;
}

.p-counselor__copy::before {
  background: url("../image/counselor.svg") no-repeat center top/contain;
}

.p-about__exp {
  line-height: 2.2;
}

.p-feature {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 72px;
       column-gap: 72px;
  background-color: #FAF8F5;
  align-items: flex-start;
}

.p-feature__header {
  width: 472px;
  position: sticky;
  top: 160px;
}

.p-feature_cardTitle {
  color: #6C5F5F;
}

.p-feature__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 32px;
  width: 70%;
}

.p-feature__card {
  background-color: #FFFFFF;
}

.p-feature_cardTitle--2line {
  line-height: 1.25;
}

.p-feature__cardImgWrap--2line {
  margin: 12px auto 6px;
}

.p-consult__detail {
  margin-top: 200px;
}

.p-consult__detailItem {
  padding: 8px 4px;
  border-bottom: 1px solid #F0A897;
}

.p-consult__detailItem:last-of-type {
  border-bottom: 0px;
}

.p-consult__detailHeader {
  position: relative;
  padding-left: 42px;
  padding-right: 30px;
}

.p-consult__detailHeader::before {
  width: 30px;
  height: 30px;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-consult__detailHeader::after {
  width: 30px;
  height: 30px;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../image/plus.svg") no-repeat left top/contain;
}

.p-consult__detailHeader--01 {
  background: url("../image/money.svg") no-repeat left top/contain;
}

.p-consult__detailHeader--02 {
  background: url("../image/house.svg") no-repeat left top/contain;
}

.p-consult__detailHeader--03 {
  background: url("../image/life.svg") no-repeat left top/contain;
}

.p-consult__detailHeader--04 {
  background: url("../image/grave.svg") no-repeat left top/contain;
}

.p-consult__detailTxt {
  line-height: 1.5;
}

.p-consult__detailContent {
  margin-top: 4px;
  margin-bottom: 4px;
}

.p-consult__exampleItem {
  background: url("../image/ballon.svg") no-repeat left top/contain;
  width: 100%;
  height: 187px;
}

.p-consult__exampleTxt {
  top: 45%;
}

.p-priceTxt {
  line-height: 1.25;
}

.p-priceTxt__price {
  display: block;
  margin-top: 8px;
}

.p-price__detailCap {
  font-size: 13px;
}

.p-price__detail {
  margin-top: 136px;
}

.p-price__exampleItem {
  background-color: #FDEBE5;
  width: 100%;
  padding-top: 100%;
  border-radius: 9999px;
}

.p-price__exampleItem--big {
  color: #FFFFFF;
  background: rgb(221, 118, 117);
  background: linear-gradient(0deg, rgb(221, 118, 117) 0%, rgb(235, 165, 157) 100%);
}

.p-process__content {
  display: flex;
  justify-content: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin: 0 auto;
  width: 1130px;
}

.p-process__card {
  width: 300px;
}

.p-process__cardCap {
  font-size: 14px;
  color: #969696;
  font-weight: 400;
}

.p-process__cardArrowWrap {
  width: 32px;
  height: auto;
  display: flex;
  align-items: center;
}

.p-process__cardArrow {
  width: 32px;
  height: 27px;
  margin: 0 auto;
}

.p-process__cardTxt {
  margin-bottom: 12px;
}

.p-process__cardTxt:last-child {
  margin-bottom: 0px;
}

.p-counselor__card {
  width: 360px;
  margin-left: 12px;
  margin-right: 12px;
  background-size: 360px 470px;
}

.p-counselor__cardTxt {
  font-size: 14px;
  line-height: 2;
}

.p-counselor__cardImgWrap {
  margin: 0 auto;
  width: 156px;
}

.p-counselor__cardExp {
  padding-top: 80px;
  margin-top: -80px;
}

.p-counselor__cardTxt {
  margin-bottom: 4px;
  font-weight: 400;
}

.p-counselor__cardTxt:last-child {
  margin-bottom: 0px;
}

.p-counselor__cardJob {
  font-size: 14px;
  font-weight: 400;
}

.p-counselor__name {
  margin-bottom: 8px;
}

.p-councelor__slider {
  position: relative;
}

.p-councelor_sliderArrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.p-faq {
  background-color: #FAFAFA;
}

.p-faq__detail {
  max-width: 1130px;
  margin: 0 auto;
}

.p-faq__detailItem {
  padding: 16px 16px;
  background-color: #FFFFFF;
  margin-bottom: 16px;
  border-radius: 16px;
}

.p-faq__detailItem:last-of-type {
  border-bottom: 0px;
}

.p-faq__detailHeader {
  position: relative;
  padding-left: 48px;
  padding-right: 30px;
}

.p-faq__detailHeader::before {
  width: 34px;
  height: 24px;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-faq__detailHeader::after {
  width: 30px;
  height: 30px;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../image/plus.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--01::before {
  background: url("../image/Q1.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--02::before {
  background: url("../image/Q2.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--03::before {
  background: url("../image/Q3.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--04::before {
  background: url("../image/Q4.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--05::before {
  background: url("../image/Q5.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--06::before {
  background: url("../image/Q6.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--07::before {
  background: url("../image/Q7.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--08::before {
  background: url("../image/Q8.svg") no-repeat left top/contain;
}

.p-faq__detailHeader--09::before {
  background: url("../image/Q9.svg") no-repeat left top/contain;
}

.p-faq__detailTxt {
  margin-left: 48px;
}

.p-contact {
  background-color: #FAFAFA;
  padding: 64px 272px 160px;
}

.p-contact__box {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 80px 112px 88px;
  margin-bottom: 64px;
  max-width: 1130px;
  margin: 0 auto 64px;
}

.p-form__wrap {
  display: flex;
  width: 100%;
}

.wpcf7-form-control-wrap {
  position: static;
  display: block;
}

.wpcf7-form-control-wrap[data-name=your-tel] {
  width: calc(50% - 4px);
}

.wpcf7-form-control-wrap[data-name=your-email] {
  margin-top: -68px;
  margin-right: 0;
  margin-left: auto;
  width: calc(50% - 4px);
}

.wpcf7-form-control-wrap[data-name=your-email]:has(.wpcf7-not-valid) {
  margin-top: -104px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: white;
  color: #DE7676;
  margin: 0;
  padding: 0;
}

input, textarea, button {
  color: #6C5F5F;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

.wpcf7-not-valid-tip {
  margin-top: -4px;
  margin-bottom: 8px;
}

.p-form--message {
  height: 128px;
}

.p-form__submit {
  margin: 0 auto;
  display: block;
  background-color: #F0A897;
}

.p-contact__message {
  text-align: center;
  margin-bottom: 32px;
  margin-bottom: 24px;
}

.p-contact__telNumber {
  color: #FFFFFF;
  font-size: 28px;
}

.p-contact__telButton {
  padding: 24px 104px;
  display: block;
  width: 448px;
  height: 88px;
  margin-bottom: 16px;
  background-color: #F0A897;
}

.p-counselor__card--sp {
  display: none !important;
}

.p-counselor__card--pc {
  display: block !important;
}

.p-cta {
  display: none;
}

.p-cta__btn {
  display: block;
  background-color: #FFFFFF;
  border: 1px solid #F0A897;
  border-radius: 9999px;
  width: 32px;
  height: 32px;
  position: absolute;
  right: -8px;
  top: -8px;
  text-align: center;
  line-height: 28px;
  letter-spacing: 0;
  color: #F0A897;
  cursor: pointer;
}

.p-cta__txt {
  text-align: center;
  font-size: 18px;
}

.p-cta__tel:-webkit-any-link {
  background-color: #FFFFFF;
  border-radius: 9999px;
  color: #DE7676;
  line-height: 2.25;
  margin-top: 24px;
  display: block;
  width: 100%;
  font-size: 22px;
}

.p-cta.is-appear {
  opacity: 1;
  z-index: 8888;
}

@media screen and (min-width: 1537px) {
  .p-feature__content {
    grid-template-columns: repeat(auto-fit, minmax(358px, 1fr));
  }
  .p-about {
    align-items: center;
  }
  .p-kv__txt {
    font-size: calc(1.17vw + 2px);
  }
  .p-kv__copyJp {
    font-size: calc(2.34vw + 12px);
  }
  .p-intro__txt--header {
    font-size: calc(1.17vw + 8px);
  }
  .p-intro__txt {
    font-size: calc(1.17vw + 2px);
  }
}
@media screen and (max-width: 1365px) {
  .p-consult__detail {
    margin-top: 0px;
  }
  .p-price__detail {
    margin-top: 0px;
  }
  .p-kv__txt {
    font-size: 16px;
    line-height: 2.2;
  }
  .p-intro__txt {
    font-size: 16px;
    line-height: 2.2;
  }
}
@media screen and (max-width: 1365px) {
  .p-kv__copyJp {
    font-size: calc(1.56vw + 20px);
  }
  .p-about__prof {
    min-width: auto;
  }
  .p-feature__header {
    width: 310px;
  }
  .p-feature__content {
    flex: 1;
    width: auto;
  }
  .p-consult__exampleItem {
    background: url(../image/ballon.svg) no-repeat left top/contain;
    width: 100%;
    padding-top: 110%;
    height: auto;
  }
  .p-process__content {
    width: 100%;
  }
  .p-process__card {
    width: 30%;
  }
  .p-contact {
    padding-right: 9%;
    padding-left: 9%;
  }
}
@media screen and (max-width: 1023px) {
  .p-kv__imgBox--02 {
    margin-top: calc(11.7vw + 180px);
  }
  .p-kv__txt {
    width: 88%;
  }
  .p-kv__copyJp {
    width: 241px;
    font-size: calc(1.17vw + 25px);
  }
  .p-intro {
    margin-top: calc(1.56vw - 68px);
  }
  .p-kv__txt {
    min-width: 290px;
  }
  .p-about {
    flex-direction: column-reverse;
    align-items: start;
    row-gap: 64px;
  }
  .p-about__prof {
    width: 100%;
  }
  .p-about__content {
    width: 100%;
  }
  .p-process__content {
    display: flex;
    flex-direction: column;
    padding-left: 9%;
    padding-right: 9%;
    row-gap: 16px;
  }
  .p-process__card {
    width: 100%;
  }
  .p-process__cardArrowWrap {
    width: 100%;
    margin: 0 auto;
    display: block;
    margin: 0 auto;
  }
  .p-process__cardArrow {
    transform: rotate(-30deg);
  }
  .p-feature {
    flex-direction: column;
    row-gap: 24px;
  }
  .p-feature__header {
    width: 100%;
    position: static;
    top: auto;
  }
  .p-feature__content {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .p-cta {
    background-color: #DE7676;
    position: fixed;
    display: block;
    z-index: 8888;
    left: 0px;
    bottom: 0px;
    padding: 16px;
    width: 100%;
    text-align: center;
    line-height: 1;
    border-radius: 0;
    opacity: 0;
    z-index: -1;
  }
  .p-cta__txt {
    font-size: 16px;
    display: inline-block;
  }
  .p-cta__tel:-webkit-any-link {
    background-color: #FFFFFF;
    border-radius: 9999px;
    color: #DE7676;
    line-height: 2.25;
    margin-top: 0px;
    display: block;
    width: 100%;
    font-size: 18px;
  }
  .p-cta__btn {
    top: 8px;
    right: 4px;
    width: 24px;
    height: 24px;
    line-height: 22px;
  }
  .p-contactButton__txt {
    color: #FFFFFF;
    margin-bottom: 8px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-process__copy {
    text-align: start !important;
  }
  .p-kv__imgWrap {
    flex-direction: column;
    width: 100%;
    align-items: start;
  }
  .p-kv__imgBox--01 {
    width: 93%;
  }
  .p-kv__imgBox--02 {
    width: 71%;
    margin-top: 24px;
    margin-right: 0;
    margin-left: auto;
  }
  .p-kv__copy {
    width: calc(100% - 48px);
    bottom: -310px;
    left: 0;
    top: auto;
    margin-left: 24px;
  }
  .p-kv__copyJp {
    font-size: 38px;
    width: auto;
  }
  .p-kv__copyJp::before {
    width: calc(100vw - 48px);
    padding-top: 18.3%;
    background: url("../image/copy.svg") no-repeat center top/contain;
  }
  .p-kv__txt {
    min-width: auto;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
  }
  .p-intro {
    margin: calc(13.7vw + 324px) auto 0;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 0;
    width: 100%;
  }
  .p-intro__txt {
    font-size: 17px;
    width: 100%;
    font-weight: 500;
  }
  .p-intro__txt--header {
    width: 100%;
    margin-bottom: 12px;
    font-size: 24px;
  }
  .p-about__copy::before {
    background: url(../image/about.svg) no-repeat left top/contain;
    height: 16px;
  }
  .p-contact__telButton {
    width: 100%;
  }
  .p-counselor__card {
    width: calc(100vw - 48px);
  }
  .p-feature__content {
    row-gap: 16px;
  }
  .p-process__header {
    padding-right: 24px;
    padding-left: 24px;
    text-align: start !important;
  }
  .p-counselor__header {
    text-align: start !important;
  }
  .p-faq__header {
    text-align: start !important;
  }
  .p-contact__header {
    text-align: start !important;
  }
  .p-process__copy::before {
    background: url(../image/process.svg) no-repeat left top/contain;
  }
  .p-counselor__copy::before {
    background: url(../image/counselor.svg) no-repeat left top/contain;
  }
  .p-process__content {
    padding-left: 24px;
    padding-right: 24px;
  }
  .p-councelor_sliderArrows {
    position: static;
    transform: none;
    width: 100%;
    /* margin: 0 auto; */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .p-faq__header h4 {
    text-align: start;
  }
  .p-contact__header h4 {
    text-align: start;
  }
  .p-councelor__cardWrap {
    margin-bottom: 24px;
  }
  .p-faq__detailHeader {
    position: relative;
    padding-left: 0;
    padding-right: 30px;
    padding-top: 28px;
    line-height: 1.5;
  }
  .p-faq__detailTxt {
    line-height: 1.5;
    margin-left: 0;
    margin-top: 8px;
  }
  .p-faq__detailHeader::before {
    top: 0;
    left: 0;
    transform: none;
  }
  .p-contact__box {
    padding: 32px 24px;
  }
  .p-contact__message {
    text-align: start;
  }
  .wpcf7-form-control-wrap[data-name=your-tel] {
    width: 100%;
  }
  .wpcf7-form-control-wrap[data-name=your-email] {
    margin-top: 0;
    margin-right: 0;
    margin-left: auto;
    width: 100%;
  }
  .wpcf7-form-control-wrap[data-name=your-email]:has(.wpcf7-not-valid) {
    margin-top: 0;
  }
  .p-contact__telButton {
    padding: 19px 24px;
  }
  .p-contact__telNumber {
    font-size: 20px;
  }
  .p-contact {
    padding-right: 24px;
    padding-left: 24px;
  }
  .p-about__profTxt {
    font-size: 13px;
  }
  .p-about__prof {
    width: 75%;
    margin: 0 auto;
  }
  .p-counselor__card--sp {
    display: block !important;
  }
  .p-counselor__card--pc {
    display: none !important;
  }
}
.p-contact__recapcha {
  font-size: 10px;
}

.p-contact__recapcha * {
  display: inline;
}

.p-contact__recapcha a:-webkit-any-link {
  color: #fff;
}

.js-header.change-color {
  background-color: #969696;
}

.txt-mc {
  color: #F0A897 !important;
}

.txt-mcd {
  color: #DE7676 !important;
}

.txt-white {
  color: #FFFFFF;
}

.txt-300 {
  font-weight: 300;
}

.bg-white {
  background-color: #FFFFFF;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.js-faq {
  cursor: pointer;
}

.js-faqbox {
  display: none; /*はじめは非表示*/
}

@keyframes slidefade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-box--open {
  animation: slidefade 0.2s linear 0s;
  display: block;
}

.js-faqbox--open {
  animation: slidefade 0.2s linear 0s;
  display: block;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.txt-ib {
  display: inline-block;
}

.txt-center {
  text-align: center;
}

.js-box {
  display: none; /*はじめは非表示*/
}

.js-accordion {
  cursor: pointer;
}

@keyframes slidefade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-box--open {
  animation: slidefade 0.2s linear 0s;
  display: block;
}

.is-open.p-consult__detailHeader::after {
  background: url("../image/minus.svg") no-repeat left top/contain;
}

.is-open.p-faq__detailHeader::after {
  background: url("../image/minus.svg") no-repeat left top/contain;
}

.txt-strong {
  font-size: 19px;
  font-weight: 500;
  color: #DE7676;
}

.txt-strong--white {
  color: #FFFFFF;
  font-size: 28px;
}

.txt-500 {
  font-weight: 500;
}

.pt-short {
  padding-top: 72px;
}

.pb-short {
  padding-bottom: 72px;
}

.pb-long {
  padding-bottom: 280px;
}

@media screen and (max-width: 1365px) {
  .txt-strong {
    font-size: 14px;
  }
  .txt-strong--white {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .pt-short {
    padding-top: 32px;
  }
  .pb-short {
    padding-bottom: 32px;
  }
  .txt-ib--pc {
    display: inline;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}

.txt-cap {
  font-size: 12px;
  color: #969696;
  font-weight: 400;
}

.syokai {
  font-size: 16px;
}

@media screen and (max-width: 900px) {
  .syokai {
    font-size: 12px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  * {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */