@charset "UTF-8";
/*共通事項*/
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}

.lp-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .lp-wrap {
    max-width: 85%;
  }
}

section {
  position: relative;
  overflow: hidden;
}

ul {
  list-style: none;
}

h2, h3, h4, h5 {
  letter-spacing: 2px;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

svg {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.pc-s {
  display: block;
}
@media screen and (max-width: 640px) {
  .pc-s {
    display: none;
  }
}

.tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
}

/* ==========================================================================
   Variables & Custom Properties
   ========================================================================== */
:root {
  /* Font Families */
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
  --font-noto-serif-jp: "Noto Serif JP", serif;
  --font-roboto: "Roboto", sans-serif;
  --font-purple-purse: "Purple Purse", serif;
  /* Colors */
  --color-primary: #39691c;
  --color-secondary: #ece7c8;
  --color-tertiary: #fef9e9;
  --color-black: #302727;
  /* Layout */
  --layout-width: 1000px;
  /* Animation */
  --top-animation-delay: 3s;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
  font-family: var(--font-noto-sans-jp);
  font-size: 0.8333333333vw;
  font-weight: normal;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
  background: url(../img/header/yellow-color-bg.jpg);
}

@media (max-width: 1024px) {
  body {
    font-size: 4.2666666667vw;
  }
}
a {
  text-decoration: none;
  color: var(--color-black);
}

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

button:not([type=disabled]) {
  cursor: pointer;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

.pc {
  display: block;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
}
.pc-s {
  display: block;
}
@media (max-width: 640px) {
  .pc-s {
    display: none;
  }
}

.tb {
  display: none;
}

@media (max-width: 1024px) {
  .tb {
    display: block;
  }
}
.sp {
  display: none;
}

@media (max-width: 640px) {
  .sp {
    display: block;
  }
}
/* Needed to cloak hidden elements before JS loads when using Alpine.js */
[x-cloak] {
  display: none !important;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
/* Hover Effects */
.on-link-hover {
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

.on-link-hover:hover {
  opacity: 0.7;
}

.dashed-bottom-border {
  position: relative;
}

.dashed-bottom-border::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 0.1041666667vw dashed var(--color-secondary);
  opacity: 0;
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

.dashed-bottom-border:hover::after {
  opacity: 1;
}

@media (min-width: 1025px) {
  .hidden-pc {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .hidden-sp {
    display: none !important;
  }
}
/* Background Patterns */
.green-bg {
  background-image: url("../img/green-color-bg.jpg");
}

.base-bg {
  background-image: url("../img/base-color-bg.jpg");
}

.red-bg {
  background-image: url("../img/red-color-bg.jpg");
}

.yellow-bg {
  background-image: url("../img/yellow-color-bg.jpg");
}

/* ==========================================================================
   Layouts
   ========================================================================== */
.center-layout {
  width: 100%;
  max-width: 52.0833333333vw;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 1024px) {
  .center-layout {
    max-width: 100%;
  }
}
/* ==========================================================================
   Animations
   ========================================================================== */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fade-in {
  -webkit-animation: fadeIn 400ms ease forwards;
          animation: fadeIn 400ms ease forwards;
}

.fade-out {
  -webkit-animation: fadeOut 500ms ease forwards;
          animation: fadeOut 500ms ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInContent {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes fadeInContent {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes countUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes countUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes slideUpAnimation {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes slideUpAnimation {
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes zoomOutAnimate {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOutAnimate {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomBackground {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
@keyframes zoomBackground {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
@-webkit-keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    clip-path: inset(0px 100% 0px 0px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    clip-path: inset(0px 100% 0px 0px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@-webkit-keyframes fadeInFromRight {
  0% {
    opacity: 0;
    clip-path: inset(0px 0px 0px 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@keyframes fadeInFromRight {
  0% {
    opacity: 0;
    clip-path: inset(0px 0px 0px 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@-webkit-keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    clip-path: inset(100% 0px 0px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    clip-path: inset(100% 0px 0px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@-webkit-keyframes fadeInFromTop {
  0% {
    opacity: 0;
    clip-path: inset(0px 0px 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@keyframes fadeInFromTop {
  0% {
    opacity: 0;
    clip-path: inset(0px 0px 100%);
  }
  100% {
    opacity: 1;
    clip-path: inset(0px);
  }
}
@-webkit-keyframes drawBorder {
  0% {
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
  }
  20% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 0px, 0px 0px);
  }
  40% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 100% 100%);
  }
  60% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
  }
  100% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
  }
}
@keyframes drawBorder {
  0% {
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
  }
  20% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 0px, 0px 0px);
  }
  40% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 100% 100%);
  }
  60% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
  }
  100% {
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
  }
}
@-webkit-keyframes falling-leaves {
  0% {
    -webkit-transform: translateY(-30%) scale(1.25) rotate(-18deg) translateZ(0px);
            transform: translateY(-30%) scale(1.25) rotate(-18deg) translateZ(0px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  42% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
            transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes falling-leaves {
  0% {
    -webkit-transform: translateY(-30%) scale(1.25) rotate(-18deg) translateZ(0px);
            transform: translateY(-30%) scale(1.25) rotate(-18deg) translateZ(0px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  42% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
            transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@-webkit-keyframes falling-leaves-reversed {
  0% {
    -webkit-transform: translateY(-30%) scale(1.25) rotate(18deg) translateZ(0px);
            transform: translateY(-30%) scale(1.25) rotate(18deg) translateZ(0px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  42% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
            transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes falling-leaves-reversed {
  0% {
    -webkit-transform: translateY(-30%) scale(1.25) rotate(18deg) translateZ(0px);
            transform: translateY(-30%) scale(1.25) rotate(18deg) translateZ(0px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  42% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
            transform: translateY(0%) scale(1) rotate(0deg) translateZ(0px);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@-webkit-keyframes flying-leaves {
  0% {
    -webkit-transform: translateY(50%) rotate(0deg) translateZ(0px);
            transform: translateY(50%) rotate(0deg) translateZ(0px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  42% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-transform: translateY(-1vw) rotate(-8deg);
            transform: translateY(-1vw) rotate(-8deg);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes flying-leaves {
  0% {
    -webkit-transform: translateY(50%) rotate(0deg) translateZ(0px);
            transform: translateY(50%) rotate(0deg) translateZ(0px);
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  42% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
  100% {
    -webkit-transform: translateY(-1vw) rotate(-8deg);
            transform: translateY(-1vw) rotate(-8deg);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@-webkit-keyframes bgMove {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 2076px;
  }
}
@keyframes bgMove {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 2076px;
  }
}
@-webkit-keyframes bgMoveY {
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: 2076px;
  }
}
@keyframes bgMoveY {
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: 2076px;
  }
}
@-webkit-keyframes flying-up-tilt {
  0% {
    -webkit-transform: translateY(50%) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(10deg);
            transform: translateY(50%) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(10deg);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(-1vw) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
            transform: translateY(-1vw) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes flying-up-tilt {
  0% {
    -webkit-transform: translateY(50%) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(10deg);
            transform: translateY(50%) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(10deg);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(-1vw) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
            transform: translateY(-1vw) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes blurFadeIn {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0.5;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes blurFadeIn {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0.5;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes leftToRightMarquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes leftToRightMarquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes rightToLeftMarquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes rightToLeftMarquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes zoomFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fallingCard {
  0% {
    opacity: 0;
    translate: -20% -50%;
    rotate: -90deg;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
  }
}
@keyframes fallingCard {
  0% {
    opacity: 0;
    translate: -20% -50%;
    rotate: -90deg;
  }
  100% {
    opacity: 1;
    translate: 0 0;
    rotate: 0deg;
  }
}
@-webkit-keyframes textClipLeftToRight {
  0% {
    clip-path: inset(0px 100% 0px 0px);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
@keyframes textClipLeftToRight {
  0% {
    clip-path: inset(0px 100% 0px 0px);
  }
  100% {
    clip-path: inset(0 0% 0 0);
  }
}
@-webkit-keyframes slowBlurFadeIn {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes slowBlurFadeIn {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@-webkit-keyframes zoomInBottomBanner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes zoomInBottomBanner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.fallingCard {
  -webkit-animation: fallingCard 1.5s ease forwards;
          animation: fallingCard 1.5s ease forwards;
}

@-webkit-keyframes flying-up-tilt-about {
  0% {
    -webkit-transform: translateY(50%) rotate(10deg);
            transform: translateY(50%) rotate(10deg);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(0) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
            transform: translateY(0) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes flying-up-tilt-about {
  0% {
    -webkit-transform: translateY(50%) rotate(10deg);
            transform: translateY(50%) rotate(10deg);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(0) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
            transform: translateY(0) matrix(0.99, -0.14, -0.17, 0.98, 0, 0) rotate(0deg);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes flying-up-tilt-about-sp {
  0% {
    -webkit-transform: translateY(50%) rotate(10deg);
            transform: translateY(50%) rotate(10deg);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(0) matrix(0.98, -0.2, -0.12, 0.99, 0, 0) rotate(0deg);
            transform: translateY(0) matrix(0.98, -0.2, -0.12, 0.99, 0, 0) rotate(0deg);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes flying-up-tilt-about-sp {
  0% {
    -webkit-transform: translateY(50%) rotate(10deg);
            transform: translateY(50%) rotate(10deg);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(0) matrix(0.98, -0.2, -0.12, 0.99, 0, 0) rotate(0deg);
            transform: translateY(0) matrix(0.98, -0.2, -0.12, 0.99, 0, 0) rotate(0deg);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes slideUpOut {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes slideUpOut {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes scaleUp {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes flying-title {
  0% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes flying-title {
  0% {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
/* ==========================================================================
   Components
   ========================================================================== */
/* Service Sub Links (Mobile) */
.service-sub-link-sp__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2.1333333333vw;
}

.service-sub-link-sp__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 999px;
  padding: 3.7333333333vw 4vw 3.7333333333vw 8vw;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.5;
}

.service-sub-link-sp__item img {
  width: 21.3333333333vw;
  height: auto;
}

/* Accordion Menu (Mobile) */
.accordion-menu-sp {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0.5333333333vw;
}

.accordion-menu-sp__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 0.2666666667vw solid var(--color-secondary);
  padding-left: 2.4vw;
  padding-right: 8vw;
}

.accordion-menu-sp__menu:first-child {
  border-top: 0.2666666667vw solid var(--color-secondary);
}

.accordion-menu-sp__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4.2666666667vw 0;
}

.accordion-menu-sp__link {
  font-family: var(--font-roboto);
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-secondary);
}

.accordion-menu-sp__trigger {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 4.8vw;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.accordion-menu-sp__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2.6666666667vw;
  padding-bottom: 9.3333333333vw;
  padding-left: 5.0666666667vw;
}

.accordion-menu-sp__sublink {
  font-family: var(--font-roboto);
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-secondary);
}

/* Link Button */
.link-button {
  width: 100%;
  max-width: 22.1354166667vw;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding: 0.6770833333vw 0.8854166667vw;
  border-radius: 999px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border: 0.15625vw solid var(--color-primary);
  -webkit-transition: color 0.7s ease, background-color 0.7s ease;
  transition: color 0.7s ease, background-color 0.7s ease;
}

.link-button__text {
  position: absolute;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: var(--font-roboto);
  font-size: 1.1458333333vw;
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
  text-align: center;
  white-space: nowrap;
}

.link-button__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  background-color: var(--color-secondary);
  width: 3.5416666667vw;
  height: 3.5416666667vw;
  color: var(--color-primary);
  -webkit-transition: color 0.7s ease, background-color 0.7s ease;
  transition: color 0.7s ease, background-color 0.7s ease;
}

.link-button__icon svg {
  width: 1.25vw;
  height: auto;
}

.link-button:hover {
  background-color: transparent;
  color: var(--color-primary);
}

.link-button:hover .link-button__icon {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.link-button__arrow-pc {
  display: block;
}

.link-button__arrow-sp {
  display: none;
}

/* Link Button (SP) */
@media (max-width: 1024px) {
  .link-button {
    max-width: 84vw;
    padding: 4vw 4.8vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 4vw;
       -moz-column-gap: 4vw;
            column-gap: 4vw;
    border-width: 0.5333333333vw;
  }
  .link-button__text {
    width: 100%;
    position: static;
    top: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    font-size: 5.8666666667vw;
  }
  .link-button__icon {
    min-width: 10.6666666667vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  .link-button__icon svg {
    width: 3.7333333333vw;
  }
  .link-button__arrow-pc {
    display: none;
  }
  .link-button__arrow-sp {
    display: block;
  }
}
/* Link Button Variant */
.link-button--inverted {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

.link-button--inverted .link-button__icon {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.link-button--inverted:hover {
  background-color: transparent;
  color: var(--color-secondary);
}

.link-button--inverted:hover .link-button__icon {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.link-button--outlined {
  background-color: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.link-button--outlined .link-button__icon {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* Custom new button */
.link-button--outlined.link-button__green {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.link-button--outlined.link-button__green .link-button__icon {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.link-button--outlined.link-button__green:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  border-color: var(--color-primary);
}

.link-button--outlined.link-button__green:hover .link-button__icon {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

/* End custom new button */
.link-button--outlined:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.link-button--outlined:hover .link-button__icon {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.underline-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8333333333vw;
     -moz-column-gap: 0.8333333333vw;
          column-gap: 0.8333333333vw;
  padding-bottom: 0.5208333333vw;
  border-bottom: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

.underline-link__text {
  font-family: var(--font-roboto);
  font-size: 1.1458333333vw;
  font-weight: 700;
  line-height: 1.5;
}

.underline-link__icon-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 2.1875vw;
  aspect-ratio: 1;
  border-radius: 100%;
  border: 0.1041666667vw solid var(--color-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.underline-link__icon {
  width: 0.8333333333vw;
  height: auto;
}

.underline-link:hover {
  opacity: 0.67;
}

.back-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-column-gap: 0.8333333333vw;
     -moz-column-gap: 0.8333333333vw;
          column-gap: 0.8333333333vw;
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

.back-button:hover {
  opacity: 0.7;
}

.back-button span {
  font-family: var(--font-roboto);
  font-size: 1.1458333333vw;
  font-weight: bold;
  color: var(--color-primary);
}

.back-button__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 2.1875vw;
  aspect-ratio: 1;
  color: var(--color-primary);
  border-radius: 100%;
  border: solid 0.1041666667vw var(--color-primary);
}

.back-button svg {
  width: 0.8333333333vw;
  aspect-ratio: 1;
}

@media (max-width: 1024px) {
  .underline-link {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 13.3333333333vw;
       -moz-column-gap: 13.3333333333vw;
            column-gap: 13.3333333333vw;
    margin-bottom: 5.3333333333vw;
    padding-bottom: 2.6666666667vw;
  }
  .underline-link__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 4.2666666667vw;
  }
  .underline-link__icon-wrapper {
    min-width: 10.6666666667vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  .underline-link__icon {
    width: 3.7333333333vw;
    height: auto;
  }
  .back-button {
    -webkit-column-gap: 4.2666666667vw;
       -moz-column-gap: 4.2666666667vw;
            column-gap: 4.2666666667vw;
  }
  .back-button:hover {
    opacity: 0.7;
  }
  .back-button span {
    font-size: 5.8666666667vw;
  }
  .back-button__icon {
    width: 11.2vw;
    border: solid 0.5333333333vw var(--color-primary);
  }
  .back-button svg {
    width: 4.2666666667vw;
  }
}
/* Page KV */
.page-kv {
  height: 33.90625vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 5.2083333333vw;
  margin-right: 5.2083333333vw;
  padding: 0 7.8125vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 1.25vw;
  background-color: var(--color-tertiary);
  background-size: cover;
}

.page-kv__title {
  border-radius: 1.25vw;
  padding: 2.6041666667vw 1.3020833333vw;
  background-image: url(../img/green-color-bg.jpg);
  font-family: var(--font-noto-serif-jp);
  font-size: 2.0833333333vw;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
  text-align: center;
  /* Animation */
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.page-kv__title.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}

.page-kv__title span {
  display: block;
  min-width: 19.7916666667vw;
}

@media (max-width: 1024px) {
  .page-kv {
    height: 161.8666666667vw;
    margin-left: 0;
    margin-right: 0;
    padding: 32vw 5.3333333333vw;
    border-radius: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
  .page-kv__title {
    width: 100%;
    border-radius: 6.4vw;
    padding: 6.9333333333vw 5.3333333333vw;
  }
  .page-kv__title span {
    font-size: 8vw;
  }
}
.gradient-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transform-origin: top center;
          transform-origin: top center;
}

.gradient-cover::before {
  position: absolute;
  inset: 0;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(57, 105, 28, 0.4)), to(#39691C));
  background: linear-gradient(0deg, rgba(57, 105, 28, 0.4) 0%, #39691C 100%);
}

/* Header
   ========================================================================== */
.site-header {
  width: 100%;
  z-index: 100;
}

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
  }
}
.base-bg {
  background-image: url(../img/header/base-color-bg.jpg);
}

.yellow-bg {
  background-image: url(../img/header/yellow-color-bg.jpg);
}

.red-bg {
  background-image: url(../img/header/red-color-bg.jpg);
}

/* Header PC Layout */
.header-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.header-pc-grid {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.78125vw;
  padding-bottom: 0.6770833333vw;
  grid-template-columns: 1fr auto 1fr;
  max-height: 9.375vw;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .header-pc {
    display: none;
  }
}
/* Header SDG Section */
.header-pc-grid__sdg {
  padding-left: 5.2083333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-pc-grid__sdg a {
  line-height: 0;
}

.header-pc-grid__sdg a img {
  width: 9.6875vw;
  height: auto;
}

/* Header Site Logo */
.header-pc-grid__site-logo a img {
  width: 10.3125vw;
  height: auto;
}

/* Header Contact Section */
.header-pc-grid__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.header-pc-contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  color: #39691c;
}

.header-pc-contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 27.4479166667vw;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header-pc-contact__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 13.0208333333vw;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.875vw 0.8333333333vw;
  font-size: 0.8333333333vw;
  font-weight: 700;
  line-height: 1.4583333333vw;
  color: #ece7c8;
  text-align: center;
}

/* Header Phone Section */
.header-pc-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.header-pc-phone__heading {
  padding-right: 1.09375vw;
  margin-bottom: -0.4166666667vw;
  font-size: 0.8333333333vw;
  font-weight: 700;
  line-height: 1.4583333333vw;
}

.header-pc-phone-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 0.4166666667vw;
     -moz-column-gap: 0.4166666667vw;
          column-gap: 0.4166666667vw;
}

.header-pc-phone-inner__number {
  font-size: 1.5625vw;
  font-weight: 700;
  line-height: 2.7083333333vw;
}

.header-pc-phone-inner img {
  width: 1.875vw;
  height: auto;
}

/* Header Navigation */
.header-pc-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-pc-nav__item {
  position: relative;
  min-height: 3.6458333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-pc-nav__item .green-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}

.header-pc-nav__item:hover .green-bg {
  opacity: 1;
}

.header-pc-nav__item a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5208333333vw;
  z-index: 1;
  font-size: clamp(12px, 0.8333333333vw, 128px);
  font-weight: 550;
  line-height: 1.4583333333vw;
  color: #39691c;
  -webkit-transition: color 0.7s ease;
  transition: color 0.7s ease;
}

.header-pc-nav__item:hover a {
  color: #ece7c8;
}

/* Navigation Item Widths */
.header-pc-nav__item--about {
  min-width: 8.4895833333vw;
}

.header-pc-nav__item--service {
  min-width: 7.03125vw;
}

.header-pc-nav__item--company {
  min-width: 6.9791666667vw;
}

.header-pc-nav__item--news {
  min-width: 8.59375vw;
}

.header-pc-nav__item--recruit {
  min-width: 6.9270833333vw;
}

.header-pc-nav__item--qna {
  min-width: 10.4166666667vw;
}

/* Header SP Layout */
.header-sp {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.0666666667vw 2.6666666667vw;
}

@media (max-width: 1024px) {
  .header-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-sp__site-logo img {
  width: 32vw;
  height: auto;
}

.header-sp__menu-button {
  width: 13.8666666667vw;
  aspect-ratio: 1;
  background-color: #b14421;
  border: none;
  border-radius: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-sp__menu-button--open img {
  width: 4vw;
  height: auto;
}

.header-sp__menu-button--close img {
  width: 5.6vw;
  height: auto;
}

/* Header SP Drawer */
.header-sp-drawer {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  background-image: url(../img/header/yellow-color-bg.jpg);
}

@media (min-width: 1025px) {
  .header-sp-drawer {
    display: none !important;
  }
}
.header-sp-drawer .header-sp-wrapper {
  background-image: url(../img/header/yellow-color-bg.jpg);
  z-index: 102;
}

.header-sp-drawer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.header-sp-drawer__content-top {
  min-height: 21.3333333333vw;
  clip-path: polygon(70% 0, 100% 100%, 0 100%);
  margin: 0px 2.6666666667vw;
}

.header-sp-drawer__inner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 2.6666666667vw;
  padding: 0 5.3333333333vw;
  padding-bottom: 12.2666666667vw;
}

.header-sp-drawer .header-sp-service-title,
.site-footer-sp .footer-sp-service-title {
  width: 100%;
  padding: 4.2666666667vw 0;
  padding-left: 2.4vw;
  font-family: var(--font-roboto);
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  color: #ece7c8;
}

.header-sp-drawer .service-sub-link-sp__list {
  padding-bottom: 3.7333333333vw;
}

.header-sp-drawer .accordion-menu-sp {
  padding-bottom: 9.0666666667vw;
}

.header-sp-drawer__sdg {
  width: 100%;
  line-height: 0;
}

.header-sp-drawer__sdg img {
  width: 100%;
  height: auto;
}

.header-sp-drawer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #39691c;
}

.header-sp-drawer__phone-heading {
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 7.4666666667vw;
}

.header-sp-drawer__phone-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.1333333333vw;
     -moz-column-gap: 2.1333333333vw;
          column-gap: 2.1333333333vw;
}

.header-sp-drawer__phone-inner img {
  width: 9.6vw;
  height: auto;
}

.header-sp-drawer__phone-inner__number {
  font-size: 8vw;
  font-weight: 700;
  line-height: 13.8666666667vw;
}

.header-sp-drawer__phone-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12.2666666667vw;
  margin-bottom: -9.3333333333vw;
}

.header-sp-drawer__contact {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  padding-top: 11.7333333333vw;
  padding-bottom: 5.0666666667vw;
  padding-left: 2.6666666667vw;
  padding-right: 2.6666666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 44.5333333333vw;
}

.header-sp-drawer__contact-decoration {
  position: absolute;
  top: 0;
  right: -5.3333333333vw;
  width: 41.8666666667vw;
  height: auto;
}

.header-sp-drawer__contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
  padding: 9.6vw 11.2vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 7.4666666667vw;
  color: #ece7c8;
}

.header-sp-drawer .service-sub-link-sp__item span,
.header-sp-drawer .service-sub-link-sp__item img,
.header-sp-drawer .accordion-menu-sp__link,
.header-sp-drawer .accordion-menu-sp__trigger,
.header-sp-drawer .header-sp-drawer__sdg,
.header-sp-drawer .header-sp-drawer__phone-heading,
.header-sp-drawer .header-sp-drawer__phone-inner img,
.header-sp-drawer .header-sp-drawer__phone-inner__number,
.header-sp-drawer .header-sp-drawer__contact-button span,
.header-sp-drawer .header-sp-drawer__contact-decoration {
  -webkit-transition: -webkit-filter 600ms;
  transition: -webkit-filter 600ms;
  transition: filter 600ms;
  transition: filter 600ms, -webkit-filter 600ms;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.header-sp-drawer.animated .service-sub-link-sp__item span,
.header-sp-drawer.animated .service-sub-link-sp__item img,
.header-sp-drawer.animated .accordion-menu-sp__link,
.header-sp-drawer.animated .accordion-menu-sp__trigger,
.header-sp-drawer.animated .header-sp-drawer__sdg,
.header-sp-drawer.animated .header-sp-drawer__phone-heading,
.header-sp-drawer.animated .header-sp-drawer__phone-inner img,
.header-sp-drawer.animated .header-sp-drawer__phone-inner__number,
.header-sp-drawer.animated .header-sp-drawer__contact-button span,
.header-sp-drawer.animated .header-sp-drawer__contact-decoration {
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.header-pc-nav {
  display: grid;
  grid-template-columns: 18.90625vw auto 18.90625vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-pc--nav .header-pc-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}

.header-pc--nav .header-pc-nav__left,
.header-pc--nav .header-pc-nav__right {
  opacity: 1;
  visibility: visible;
}

.header-pc-nav__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  line-height: 0;
  gap: 0.8333333333vw;
}

.header-pc-nav__left-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0.78125vw;
}

.header-pc-nav__site-logo {
  width: 6.4583333333vw;
  height: auto;
}

.header-pc-nav__sdgs {
  width: auto;
  height: 3.0208333333vw;
}

.header-pc-nav__divider {
  width: 0.0520833333vw;
  height: 100%;
  background-color: black;
}

.header-pc-nav__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.header-pc-nav__link {
  min-height: 3.6458333333vw;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-pc-nav__link--phone {
  background-color: var(--color-primary);
}

.header-pc-nav__link--mail {
  background-color: rgb(177, 68, 33);
}

.header-pc-nav__phone-icon {
  width: 1.875vw;
  height: auto;
}

.header-pc-nav__mail-icon {
  width: 2.2916666667vw;
  height: auto;
}

.header-pc-nav__left,
.header-pc-nav__right {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.header-pc--nav .header-pc-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 100;
}

.header-pc--nav .header-pc-nav__left,
.header-pc--nav .header-pc-nav__right {
  opacity: 1;
  visibility: visible;
}

.green-bg {
  background-image: url(../img/footer/green-color-bg.jpg);
}

/* Contact Footer */
.contact-footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 15.8333333333vw;
  padding-bottom: 3.2291666667vw;
  padding-left: 1.0416666667vw;
  padding-right: 1.0416666667vw;
}

.contact-footer__bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(50% 0%, 100% 28.5%, 100% 100%, 0% 100%, 0% 28.5%);
  overflow: hidden;
}

.contact-footer__bg img {
  width: 100%;
}

.contact-footer__bg-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center left;
          transform-origin: center left;
  -webkit-transition: width 2500ms ease;
  transition: width 2500ms ease;
}

.animate .contact-footer__bg-curtain {
  width: 0;
}

.contact-footer-content {
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 26.25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-roboto);
  color: var(--color-black);
  padding: 2.34375vw 1.9791666667vw;
  border-radius: 1.25vw;
  font-weight: 700;
}

.contact-footer-content__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.4166666667vw;
     -moz-column-gap: 0.4166666667vw;
          column-gap: 0.4166666667vw;
  margin-bottom: 0.7291666667vw;
}

.contact-footer-content__header div {
  width: 1.0416666667vw;
  aspect-ratio: 1;
  background-color: #b14421;
  border-radius: 100%;
}

.contact-footer-content__header span {
  font-size: 1.1458333333vw;
}

.contact-footer-content__message {
  max-width: 21.0416666667vw;
  margin-bottom: 1.5625vw;
}

.contact-footer-content__buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.8333333333vw;
}

@media (min-width: 1025px) {
  .contact-footer-content__buttons #job-request-btn .link-button__text {
    padding-right: 0.625vw;
  }
}
/* Contact Footer SP */
@media (max-width: 1024px) {
  .contact-footer {
    padding-top: 56.2666666667vw;
    padding-bottom: 15.4666666667vw;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
  }
  .contact-footer-content {
    max-width: none;
    padding: 12vw 5.3333333333vw;
    border-radius: 6.4vw;
  }
  .contact-footer-content__header {
    margin-bottom: 8.5333333333vw;
    -webkit-column-gap: 2.1333333333vw;
       -moz-column-gap: 2.1333333333vw;
            column-gap: 2.1333333333vw;
  }
  .contact-footer-content__header div {
    width: 5.3333333333vw;
  }
  .contact-footer-content__header span {
    font-size: 5.8666666667vw;
  }
  .contact-footer-content__message {
    max-width: 73.3333333333vw;
    margin-bottom: 8.5333333333vw;
  }
  .contact-footer-content__buttons {
    row-gap: 3.2vw;
  }
}
/* Footer */
.site-footer {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ece7c8;
  font-family: var(--font-roboto);
}

.site-footer-logo {
  line-height: 0;
}

.site-footer-logo img {
  width: 9.7395833333vw;
  height: auto;
}

@media (max-width: 1024px) {
  .site-footer-logo img {
    width: 49.8666666667vw;
  }
}
.back-to-top-button {
  position: absolute;
  bottom: 0.5729166667vw;
  right: 1.0416666667vw;
  width: 4.5833333333vw;
  aspect-ratio: 1;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.back-to-top-button svg {
  width: 1.5104166667vw;
  height: auto;
}

@media (max-width: 1024px) {
  .back-to-top-button {
    bottom: 5.3333333333vw;
    right: 6.4vw;
    width: 14.4vw;
  }
  .back-to-top-button svg {
    width: 4.8vw;
  }
}
.site-footer-pc {
  padding-top: 3.28125vw;
  padding-bottom: 1.4583333333vw;
}

@media (max-width: 1024px) {
  .site-footer-pc {
    display: none;
  }
}
.site-footer-pc__grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 10.78125vw 1fr;
  gap: 1.7708333333vw;
}

.site-footer-pc__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
}

.site-footer-pc__left-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.1458333333vw;
  margin-top: 0.3125vw;
  margin-bottom: 2.5vw;
}

.site-footer-pc__left-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.1458333333vw;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.site-footer__social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.4166666667vw;
     -moz-column-gap: 0.4166666667vw;
          column-gap: 0.4166666667vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.5416666667vw;
  aspect-ratio: 1;
  background-color: #3a453d;
  border-radius: 0.2604166667vw;
}

.social-link img {
  width: 1.5625vw;
  height: auto;
}

@media (max-width: 1024px) {
  .site-footer__social-links {
    -webkit-column-gap: 1.8666666667vw;
       -moz-column-gap: 1.8666666667vw;
            column-gap: 1.8666666667vw;
  }
  .social-link {
    width: 18.1333333333vw;
    border-radius: 1.3333333333vw;
  }
  .social-link img {
    width: 8vw;
  }
}
.site-footer-pc-sdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.site-footer-pc-sdg__header {
  font-size: 0.8333333333vw;
  font-weight: 700;
  line-height: 1.25vw;
  word-break: keep-all;
  margin-bottom: 0.2604166667vw;
}

.site-footer-pc-sdg img {
  width: 100%;
  height: auto;
}

.site-footer-pc-copyright {
  font-size: 0.7291666667vw;
  line-height: 1;
}

@media (max-width: 1024px) {
  .site-footer-pc-copyright {
    font-size: 3.7333333333vw;
  }
}
.site-footer-pc__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: right;
      -ms-flex-align: right;
          align-items: right;
}

.site-footer-pc-nav {
  display: grid;
  grid-template-columns: 8.3333333333vw 1fr 8.3333333333vw 8.3333333333vw;
  grid-template-rows: auto auto;
  -webkit-column-gap: 1.3541666667vw;
     -moz-column-gap: 1.3541666667vw;
          column-gap: 1.3541666667vw;
  row-gap: 0.8333333333vw;
  margin-bottom: 1.8229166667vw;
}

.site-footer-pc-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4166666667vw;
}

.site-footer-pc-nav__header {
  width: 100%;
  font-weight: 550;
  font-size: clamp(12px, 0.8333333333vw, 128px);
  padding: 0.2083333333vw 0;
  border-bottom: 1px solid #ece7c8;
  color: #ece7c8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.site-footer-pc-nav__submenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.2083333333vw;
}

.site-footer-pc-nav__submenu li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.site-footer-pc-nav__submenu-item {
  word-break: keep-all;
  font-size: clamp(10px, 0.7291666667vw, 128px);
  line-height: 1.71;
  color: #ece7c8;
  -webkit-text-decoration: underline dashed;
          text-decoration: underline dashed;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.7s ease;
  transition: text-decoration-color 0.7s ease;
}

.site-footer-pc-nav__submenu-item--no-break {
  word-break: keep-all;
}

.site-footer-pc-nav__submenu-item:hover {
  text-decoration-color: #ece7c8;
}

.site-footer-pc-other-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8333333333vw;
     -moz-column-gap: 0.8333333333vw;
          column-gap: 0.8333333333vw;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.site-footer-pc-other-links a {
  line-height: 0;
}

.site-footer-pc-other-links a img {
  width: 8.59375vw;
  height: auto;
}

/* Footer SP */
.site-footer-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5.0666666667vw;
  padding-left: 8vw;
  padding-right: 8vw;
  padding-bottom: 7.4666666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 1025px) {
  .site-footer-sp {
    display: none;
  }
}
.site-footer-sp .site-footer-logo {
  margin-bottom: 7.4666666667vw;
}

.site-footer-sp .service-sub-link-sp__list {
  margin-bottom: 8vw;
}

.site-footer-sp-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-footer-sp-inner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 24.2666666667vw;
}

.site-footer-sp .accordion-menu-sp {
  margin-bottom: 14.6666666667vw;
}

.site-footer-sp-inner__link {
  line-height: 0;
}

.site-footer-sp-inner__links img {
  width: 100%;
  height: auto;
}

.site-footer-sp-inner__links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.6666666667vw;
}

.red-div {
  width: 100%;
  height: 100%;
  background-color: red;
}

.site-footer-sp-aichi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*flex-direction: column;
  row-gap: calc(100vw * (7 / 375));
  padding-bottom: calc(100vw * (12 / 375));
  align-items: stretch;*/
  background-color: white;
}

.site-footer-sp-aichi__header {
  padding: 0.4vw 5.3333333333vw;
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 3.2vw;
  line-height: 1.115;
  color: #ece7c8;
  background-color: var(--color-primary);
  text-align: center;
  border: 1px solid white;
}

.site-footer-sp-aichi__img {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0.8vw;
  height: auto;
}

.site-footer-sp .site-footer__social-links {
  margin-bottom: 12.2666666667vw;
}

.site-footer-sp__copyright {
  font-size: 3.7333333333vw;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/*LP*/
.lp-mainv {
  position: relative;
  height: 70vh;
  background-color: #B0CAA8;
}
.lp-mainv .lp-mainv-block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.lp-mainv .lp-mainv-block .lp-mainv-title {
  border-radius: 1.25vw;
  padding: 2.60416vw 1.302083vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 30.9896vw;
  height: 6.8vw;
  margin: 0 auto 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-noto-serif-jp);
  font-style: normal;
  font-weight: 700;
  font-size: 2.083333vw;
  line-height: 120%;
  text-align: center;
  color: #ECE7C8;
  /* Animation */
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-mainv .lp-mainv-block .lp-mainv-title.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}
.lp-mainv .lp-mainv-block .lp-mainv-house {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 35.1vw;
  height: 17vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  text-align: center;
  background-image: url(../img/lp/main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 10;
}
.lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-txt {
  margin-bottom: 1rem;
  color: #6E4F21;
  font-size: 1vw;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
}
.lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl {
  line-height: 1.3;
  color: #6E4F21;
  font-size: 2.8vw;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl .lp-mainv-span {
  font-size: 1.8vw;
}
.lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl .lp-mainv-span02 {
  font-size: 1.9vw;
}
.lp-mainv .scroll-infinity {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp-mainv .scroll-infinity .scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.lp-mainv .scroll-infinity .scroll-infinity__wrap .scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}
.lp-mainv .scroll-infinity .scroll-infinity__wrap .scroll-infinity__list .scroll-infinity__item {
  width: 50vw;
}
.lp-mainv .scroll-infinity .scroll-infinity__wrap .scroll-infinity__list .scroll-infinity__item img {
  width: 100%;
}
.lp-mainv .scroll-infinity .scroll-infinity__wrap .scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.lp-two-bt {
  width: 100%;
  max-width: 48%;
  margin: 6rem auto 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp-two-bt .link-button {
  background-color: #6E4F21;
  border: 0.15625vw solid #6E4F21;
}
.lp-two-bt .link-button .link-button__icon {
  color: #6E4F21;
}
.lp-two-bt .link-button:hover {
  color: #6E4F21;
  background-color: var(--color-secondary);
}
.lp-two-bt .link-button:hover .link-button__icon {
  color: var(--color-secondary);
  background-color: #6E4F21;
}
.lp-two-bt .reverse-bt {
  background-color: var(--color-secondary);
}
.lp-two-bt .reverse-bt .link-button__text {
  color: #6E4F21;
}
.lp-two-bt .reverse-bt .link-button__icon {
  color: #6E4F21;
}
.lp-two-bt .reverse-bt .link-button__icon svg {
  width: 2.2vw;
}
.lp-two-bt .reverse-bt:hover {
  background-color: #6E4F21;
}
.lp-two-bt .reverse-bt:hover .link-button__text {
  color: var(--color-secondary);
}
.lp-two-bt .reverse-bt:hover .link-button__icon {
  color: #6E4F21;
  background-color: var(--color-secondary);
}

.lp-concept {
  padding-bottom: 13rem;
  /*この先SP表示板*/
}
.lp-concept .border {
  width: 90%;
  margin: 0 auto -8rem;
  aspect-ratio: 915/103;
}
.lp-concept .lp-concept-t {
  position: relative;
}
.lp-concept .lp-concept-t .lp-concept-title {
  width: 41rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6E4F21;
  font-family: var(--font-noto-serif-jp);
}
.lp-concept .lp-concept-t .lp-concept-title::after {
  content: "";
  position: absolute;
  right: 22%;
  width: 35.2rem;
  height: 29.7rem;
  background-image: url("../img/lp/concept-img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-concept .lp-concept-t .lp-concept-title.animate::after {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}
.lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-number {
  font-size: 18rem;
  font-style: italic;
  font-weight: bold;
}
.lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-number.animate {
  -webkit-animation: flying-title 1.2s ease forwards;
          animation: flying-title 1.2s ease forwards;
}
.lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-ttl {
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
  font-size: 2.8rem;
}
.lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-ttl.animate {
  -webkit-animation: flying-title 1.2s ease forwards;
          animation: flying-title 1.2s ease forwards;
}
.lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-ttl span {
  display: block;
  line-height: 1;
  font-size: 3.8rem;
  font-weight: 700;
}
.lp-concept .lp-concept-t .lp-concept-fukidashi {
  width: 61rem;
  margin: -4.4rem auto 2.2rem;
}
.lp-concept .lp-concept-t .lp-concept-txt {
  margin-bottom: 4rem;
  color: #6E4F21;
  text-align: center;
  font-weight: 500;
  font-size: 1.7rem;
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.lp-concept .lp-concept-t .lp-concept-txt.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-concept .lp-wrap {
  position: relative;
}
.lp-concept .lp-wrap .lp-concept-main-bg {
  width: 100%;
}
.lp-concept .lp-wrap .lp-concept-main {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lp-concept .lp-wrap .lp-concept-main li {
  width: 30%;
}
.lp-concept .lp-wrap .lp-concept-main li:last-child {
  width: 32%;
}
.lp-concept .lp-wrap .lp-concept-main li .text-svg {
  height: revert-layer;
  fill: none;
  stroke: #6E4F21;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-transition: stroke-dashoffset 0.1s ease-out;
  transition: stroke-dashoffset 0.1s ease-out;
  font-family: var(--font-noto-serif-jp);
  font-style: normal;
  font-weight: 400;
  font-size: 9.5rem;
  line-height: 140%;
  letter-spacing: 0.02em;
  -webkit-transform: matrix(1, 0, -0.24, 0.97, 0, 0);
          transform: matrix(1, 0, -0.24, 0.97, 0, 0);
}
.lp-concept .lp-wrap .lp-concept-main li .text-svg.animate {
  -webkit-animation: draw 3s ease-in-out forwards;
          animation: draw 3s ease-in-out forwards;
}
.lp-concept .lp-wrap .lp-concept-main li .lp-concept-main-ttl {
  position: relative;
  text-align: center;
  line-height: 1;
  color: rgba(110, 79, 33, 0);
  -webkit-text-stroke: 2px #6E4F21;
  font-size: 4vw;
  font-style: italic;
  font-family: var(--font-purple-purse);
  z-index: 2;
}
.lp-concept .lp-wrap .lp-concept-main li .lp-concept-ttl {
  position: relative;
  margin-top: -3rem;
  z-index: 3;
  /*Animation*/
  -webkit-transform: translateY(-30%) scale(1.25) rotate(-18deg) translateZ(0px);
          transform: translateY(-30%) scale(1.25) rotate(-18deg) translateZ(0px);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
}
.lp-concept .lp-wrap .lp-concept-main li .lp-concept-ttl.animate {
  -webkit-animation: falling-leaves 1s ease forwards;
          animation: falling-leaves 1s ease forwards;
}
.lp-concept .lp-wrap .lp-concept-main li .lp-concept-text {
  position: relative;
  margin-top: -1.8vw;
  z-index: 2;
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.lp-concept .lp-wrap .lp-concept-main li .lp-concept-text.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-concept .lp-wrap .lp-concept-main li:nth-child(2) .lp-concept-text {
  margin-top: -2.1vw;
}
.lp-concept .lp-wrap .lp-concept-main li:nth-child(3) .lp-concept-text {
  margin-top: -2.6vw;
}
.lp-concept .lp-concept-sp {
  position: relative;
  margin-bottom: 2vw;
}
.lp-concept .lp-concept-sp .lp-concept-bgsp {
  position: relative;
  width: 100%;
  left: 10%;
}
.lp-concept .lp-concept-sp .lp-concept-txtsp {
  position: absolute;
  top: 50%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 78vw;
}
.lp-concept .lp-concept-sp .lp-concept-txtsp .text-svg {
  height: revert-layer;
  fill: none;
  stroke: #6E4F21;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-transition: stroke-dashoffset 0.1s ease-out;
  transition: stroke-dashoffset 0.1s ease-out;
  font-family: var(--font-noto-serif-jp);
  font-style: normal;
  font-weight: 400;
  font-size: 24vw;
  line-height: 140%;
  letter-spacing: 0.02em;
  -webkit-transform: matrix(1, 0, -0.24, 0.97, 0, 0);
          transform: matrix(1, 0, -0.24, 0.97, 0, 0);
}
.lp-concept .lp-concept-sp .lp-concept-txtsp .text-svg.animate {
  -webkit-animation: draw 3s ease-in-out forwards;
          animation: draw 3s ease-in-out forwards;
}
.lp-concept .lp-concept-sp .lp-concept-txtsp .lp-concept-main-ttl {
  position: relative;
  text-align: center;
  line-height: 1;
  color: rgba(110, 79, 33, 0);
  -webkit-text-stroke: 2px #6E4F21;
  font-size: 22vw;
  font-style: italic;
  font-family: var(--font-purple-purse);
  z-index: 2;
}
.lp-concept .lp-concept-sp .lp-concept-txtsp .lp-concept-ttl {
  position: relative;
  margin-top: -7.5vw;
  z-index: 3;
}
.lp-concept .lp-concept-sp .lp-concept-txtsp .lp-concept-text {
  position: relative;
  margin-top: -8vw;
  z-index: 2;
}
.lp-concept .csp02 .lp-concept-bgsp {
  margin: 0 auto;
  left: auto;
}
.lp-concept .csp02 .lp-concept-txtsp {
  left: 50%;
}
.lp-concept .csp02 .lp-concept-txtsp .lp-concept-text {
  margin-top: -10vw;
}
.lp-concept .csp03 .lp-concept-bgsp {
  left: auto;
  right: 10%;
}
.lp-concept .csp03 .lp-concept-txtsp {
  left: 40%;
}
.lp-concept .csp03 .lp-concept-txtsp .lp-concept-text {
  margin-top: -12vw;
}

.lp-loan {
  padding: 9rem 0 6rem;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background-image: url(../img/footer/green-color-bg.jpg);
  overflow: visible;
}
.lp-loan .lp-loan-title {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34rem;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../img/header/yellow-color-bg.jpg);
  border: 1px solid #39691C;
  border-radius: 10px;
  z-index: 2;
}
.lp-loan .lp-loan-title.animate {
  -webkit-animation: blurFadeIn 1s ease-in-out forwards;
          animation: blurFadeIn 1s ease-in-out forwards;
}
.lp-loan .lp-loan-title .lp-loan-title-img {
  width: 7rem;
}
.lp-loan .lp-loan-title .lp-loan-title-ttl {
  color: #39691C;
  font-size: 3.4rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
}
.lp-loan .lp-loan-illust {
  position: absolute;
  top: -9%;
  right: 7%;
  width: 40rem;
}
.lp-loan .lp-loan-fukidashi {
  position: absolute;
  top: 10%;
  left: 12%;
  width: 19rem;
  /*animation*/
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-loan .lp-loan-fukidashi.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}
.lp-loan .lp-loan-fukidashi02 {
  position: absolute;
  top: 15%;
  right: 16%;
  width: 14rem;
  /*animation*/
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-loan .lp-loan-fukidashi02.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}
.lp-loan .lp-loan-ttl {
  margin-bottom: 1rem;
  text-align: center;
  color: #ECE7C8;
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.lp-loan .lp-loan-ttl.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-loan .lp-loan-ttl span {
  font-size: 2.4rem;
}
.lp-loan .lp-loan-text {
  margin-bottom: 1rem;
  text-align: center;
  color: #ECE7C8;
  font-size: 1.7rem;
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.lp-loan .lp-loan-text.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-loan .lp-loan-illustsp {
  width: 90%;
  margin: 0 auto;
}
.lp-loan .lp-loan-under {
  margin: 2rem auto 2.8rem;
}
.lp-loan .lp-loan-under .lp-triangle {
  width: 0;
  height: 0;
  margin: 0 auto 0.6rem;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 12.5px solid #ECE7C8;
}
.lp-loan .lp-lone-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.lp-loan .lp-lone-list li {
  position: relative;
  width: 48%;
  height: 30rem;
  margin-bottom: 4rem;
  padding: 2rem 5rem 4rem;
  background-image: url(../img/header/yellow-color-bg.jpg);
  border-radius: 4px;
}
.lp-loan .lp-lone-list li .number {
  position: relative;
  color: #ECE7C8;
  font-size: 3.6rem;
  -webkit-text-stroke: 1px #39691C;
  text-stroke: 1px #39691C;
  font-style: italic;
  font-family: var(--font-purple-purse);
  z-index: 3;
}
.lp-loan .lp-lone-list li .lp-lone-list-ttl {
  position: relative;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: left;
  color: #39691C;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  z-index: 3;
}
.lp-loan .lp-lone-list li .lp-lone-list-ttl span {
  display: ruby;
  width: 100%;
  background: #E0D770;
  /* animation */
  clip-path: inset(0px 100% 0px 0px);
}
.lp-loan .lp-lone-list li .lp-lone-list-ttl.animate span {
  /*Animation*/
  -webkit-animation: textClipLeftToRight 1s ease forwards;
          animation: textClipLeftToRight 1s ease forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.lp-loan .lp-lone-list li .lp-lone-list-txt {
  position: relative;
  font-weight: 550;
  font-size: 1.7rem;
  color: #39691c;
  z-index: 3;
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.lp-loan .lp-lone-list li .lp-lone-list-txt.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-loan .lp-lone-list li .lp-loan-list-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 22rem;
  z-index: 1;
}
.lp-loan .lp-lone-list li:nth-child(2) .lp-loan-list-bg {
  width: 36rem;
}
.lp-loan .lp-lone-list li:nth-child(3) {
  margin-bottom: 0;
}
.lp-loan .lp-lone-list li:nth-child(4) {
  margin-bottom: 0;
}
.lp-loan .lp-lone-list li:nth-child(4) .lp-loan-list-bg {
  width: 24rem;
}

.lp-merit {
  padding: 8rem 0 6rem;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  background-image: url("../img/lp/merit-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lp-merit .lp-merit-title {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 4rem;
}
.lp-merit .lp-merit-title .lp-merit-title-block {
  width: 7.5rem;
  height: 7.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.7rem;
  background-color: #ECE7C8;
  color: #6E4F21;
  font-size: 6rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
}
.lp-merit .lp-merit-title .ye {
  background-color: #E0D770;
  /*Animation*/
  opacity: 0;
}
.lp-merit .lp-merit-title .ye.animate {
  -webkit-animation: scaleUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: scaleUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.lp-merit .lp-merit-title .lastblock::after {
  content: "";
  background-image: url("../img/lp/merit-ttl.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 4.4rem;
  height: 3rem;
  position: absolute;
  top: -3rem;
  right: -3rem;
}
.lp-merit .lp-merit-title .lp-merit-ttl {
  letter-spacing: normal;
  color: #ECE7C8;
  font-size: 5.4rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
}
.lp-merit .lp-merit-title .lp-merit-ttl span {
  font-size: 4rem;
}
.lp-merit .lp-merit-main {
  position: relative;
  padding: 7rem 6rem 6rem;
  clip-path: polygon(50% 0%, 100% 14%, 100% 100%, 0 100%, 0% 14%);
  background-image: url(../img/header/yellow-color-bg.jpg);
}
.lp-merit .lp-merit-main .lp-merit-main-ttl {
  color: #6E4F21;
  text-align: center;
}
.lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-subttl {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-subttl.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-ttl {
  margin-bottom: 1.4rem;
  line-height: 1.1;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-ttl.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-ttl span {
  display: inline-block;
  margin-bottom: 1rem;
  background-color: #E0D770;
  font-size: 5rem;
}
.lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-txt {
  margin-bottom: 3rem;
  font-weight: 500;
  font-size: 1.7rem;
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-txt.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-ttl {
  position: relative;
  background-color: #6E4F21;
  text-align: center;
  line-height: 2.2;
  color: #ECE7C8;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  z-index: 2;
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-ttl.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img {
  position: relative;
  width: 100%;
  margin-top: -5rem;
  z-index: 1;
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img .lp-merit-block-img-curtain {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: width 2500ms ease;
  transition: width 2500ms ease;
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img.animate .lp-merit-block-img-curtain {
  width: 0;
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img02 {
  position: relative;
  width: 50%;
  margin: -6rem auto 0;
  z-index: 2;
  /*Animation*/
  opacity: 0;
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img02.animate {
  -webkit-animation: scaleUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
          animation: scaleUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-woman {
  position: absolute;
  bottom: 4%;
  right: 1.8%;
  width: 10%;
  z-index: 2;
}
.lp-merit .lp-merit-solve {
  position: relative;
  margin-top: -0.5%;
  padding: 8rem 4rem 4rem;
  background-image: url("../img/lp/solve-bg.jpg");
}
.lp-merit .lp-merit-solve .lp-merit-solve-img {
  position: absolute;
  top: 4%;
  right: -4.4%;
  width: 30rem;
}
.lp-merit .lp-merit-solve .lp-merit-solve-triangle {
  position: absolute;
  top: -2.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 26rem;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../img/lp/merit-triangle.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #6E4F21;
  font-size: 3.4rem;
  font-weight: 600;
  font-family: var(--font-noto-serif-jp);
}
.lp-merit .lp-merit-solve .lp-merit-solve-ttl {
  text-align: center;
  color: #6E4F21;
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  /*Animation*/
  opacity: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.lp-merit .lp-merit-solve .lp-merit-solve-ttl.animate {
  -webkit-animation: slideUpAnimation 1s ease forwards;
          animation: slideUpAnimation 1s ease forwards;
}
.lp-merit .lp-merit-solve .lp-merit-solve-ttl span {
  font-size: 3rem;
}
.lp-merit .lp-merit-solve .lp-merit-solve-under {
  margin: 1.2rem auto 1.6rem;
}
.lp-merit .lp-merit-solve .lp-merit-solve-under .lp-triangle {
  width: 0;
  height: 0;
  margin: 0 auto 0.6rem;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 12.5px solid #6E4F21;
}
.lp-merit .lp-merit-solve .lp-merit-solve-list {
  background-color: #6E4F21;
}
.lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 2rem 2rem 0;
  border-bottom: 2px dotted #ECE7C8;
}
.lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li .solve-ttl {
  width: 45%;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #7d766f;
  clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%);
  color: #ECE7C8;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
}
.lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li .solve-txt {
  width: 48%;
  color: #ECE7C8;
  font-size: 1.7rem;
}
.lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li:last-child {
  border-bottom: none;
}
.lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li.animate {
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}

.lp-faq {
  padding-top: 8rem;
}
.lp-faq .lp-fap-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 9rem;
}
.lp-faq .lp-fap-title .lp-fap-title-img {
  width: 17rem;
}
.lp-faq .lp-fap-title .lp-faq-title-ttl {
  margin: 0 2rem;
  color: #39691c;
  text-align: center;
  font-size: 5.6rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
}
.lp-faq .lp-fap-title .lp-faq-title-ttl.animate {
  -webkit-animation: flying-title 1.2s ease forwards;
          animation: flying-title 1.2s ease forwards;
}
.lp-faq .lp-fap-title .lp-fap-title-img02 {
  width: 23rem;
  /*animation*/
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-faq .lp-fap-title .lp-fap-title-img02.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}
.lp-faq .lp-faq-container .qa-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.0417vw;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  opacity: 0;
}
.lp-faq .lp-faq-container .qa-item.animate {
  -webkit-animation: fadeIn 1s ease-in-out forwards;
          animation: fadeIn 1s ease-in-out forwards;
}
.lp-faq .lp-faq-container .qa-item .qa-question {
  width: 45%;
  font-family: var(--font-noto-serif-jp);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9375vw;
  line-height: 120%;
  color: #39691C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 2.5521vw;
}
.lp-faq .lp-faq-container .qa-item .qa-question .qa-bullet {
  margin-right: 1.25vw;
  color: #39691C;
}
.lp-faq .lp-faq-container .qa-item .qa-question .qa-text {
  width: 45%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 2rem;
}
.lp-faq .lp-faq-container .qa-item .qa-answer {
  width: 50%;
  font-family: var(--font-noto-sans-jp);
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  color: #39691C;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0;
  margin-right: 2.8646vw;
}
.lp-faq .lp-faq-container .qa-divider {
  border: none;
  height: 1px;
  background-color: #39691C;
  margin: 2.0833vw 0;
}
.lp-faq .qa-parts {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 20rem;
  /*animation*/
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-faq .qa-parts.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}
.lp-faq .qa-parts02 {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 19rem;
  /*animation*/
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-faq .qa-parts02.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}

.lp-contact {
  padding-top: 7rem;
}
.lp-contact .lp-contact-border {
  width: 100%;
}
.lp-contact .lp-contact-ttl {
  margin: -5rem 0 4rem;
  color: #6E4F21;
  text-align: center;
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  /*animation*/
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.lp-contact .lp-contact-ttl.animate {
  -webkit-animation: blurFadeIn 1s ease forwards;
          animation: blurFadeIn 1s ease forwards;
}
.lp-contact .lp-contact-ttl span {
  font-size: 3.8rem;
}
.lp-contact .lp-contact-img {
  width: 40%;
  margin: 0 auto;
}

@keyframes blurFadeIn {
  0% {
    -webkit-filter: blur(5px);
            filter: blur(5px);
    opacity: 0.5;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@media screen and (min-width: 1921px) {
  .lp-mainv .lp-mainv-block .lp-mainv-house {
    aspect-ratio: 514/249;
  }
  .lp-concept .lp-concept-t .lp-concept-title {
    aspect-ratio: 409/221;
  }
  .lp-concept .lp-concept-t .lp-concept-title::after {
    aspect-ratio: 519/437;
  }
  .lp-concept .lp-wrap .lp-concept-main-bg {
    aspect-ratio: 540/323;
  }
  .lp-loan .lp-lone-list li {
    height: 35rem;
  }
  .lp-loan .lp-lone-list li .lp-loan-list-bg {
    aspect-ratio: 215/213;
  }
  .lp-loan .lp-lone-list li:nth-child(2) .lp-loan-list-bg {
    aspect-ratio: 369/220;
  }
  .lp-loan .lp-lone-list li:nth-child(4) .lp-loan-list-bg {
    aspect-ratio: 1/1;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img {
    aspect-ratio: 64/25;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img02 {
    aspect-ratio: 32/9;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-woman {
    aspect-ratio: 18/31;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-img {
    aspect-ratio: 307/241;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-triangle {
    aspect-ratio: 402/155;
  }
  .lp-faq .lp-fap-title .lp-fap-title-img {
    aspect-ratio: 184/201;
  }
  .lp-faq .lp-fap-title .lp-fap-title-img02 {
    aspect-ratio: 246/245;
  }
}
@media screen and (max-width: 1650px) {
  .lp-concept .border {
    margin: 0 auto;
  }
  .lp-concept .lp-concept-t .lp-concept-title::after {
    right: 13%;
  }
  .lp-faq .qa-parts {
    width: 13rem;
    left: 2%;
  }
  .lp-faq .qa-parts02 {
    width: 7vw;
    top: 40%;
    right: 0%;
    bottom: unset;
  }
}
@media screen and (max-width: 1366px) {
  .lp-concept .lp-concept-t .lp-concept-title::after {
    right: 6.5%;
  }
  .lp-concept .lp-wrap .lp-concept-main li .lp-concept-text {
    margin-top: -2.8vw;
  }
  .lp-concept .lp-wrap .lp-concept-main li:nth-child(2) .lp-concept-text {
    margin-top: -3.1vw;
  }
  .lp-concept .lp-wrap .lp-concept-main li:nth-child(3) .lp-concept-text {
    margin-top: -4.4vw;
  }
  .lp-loan .lp-loan-fukidashi {
    left: 4%;
  }
  .lp-loan .lp-loan-fukidashi02 {
    right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .lp-mainv .lp-mainv-block .lp-mainv-title {
    padding: 3.60416vw 2.302083vw;
    width: 60vw;
    height: 15vw;
    margin: 0 auto 6rem;
    font-size: 5vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house {
    width: 81vw;
    height: 39vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-txt {
    margin-bottom: 2rem;
    font-size: 2vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl {
    font-size: 5.8vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl .lp-mainv-span {
    font-size: 4.2vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl .lp-mainv-span02 {
    font-size: 4.7vw;
  }
  .lp-mainv .scroll-infinity .scroll-infinity__wrap .scroll-infinity__list .scroll-infinity__item {
    width: 100vw;
  }
  .lp-two-bt {
    max-width: 90%;
    margin: 6rem auto 8rem;
  }
  .lp-two-bt .link-button {
    max-width: 47%;
    padding: 2vw 2.2vw;
  }
  .lp-two-bt .link-button .link-button__text {
    font-size: 2.4vw;
  }
  .lp-two-bt .link-button .link-button__icon {
    width: 6vw;
    min-width: 6vw;
    height: 6vw;
  }
  .lp-two-bt .link-button .link-button__icon svg {
    width: 3vw;
  }
  .lp-two-bt .reverse-bt .link-button__icon {
    width: 6vw;
    min-width: 6vw;
    height: 6vw;
  }
  .lp-two-bt .reverse-bt .link-button__icon svg {
    width: 4vw;
  }
  .lp-concept {
    padding-bottom: 15rem;
  }
  .lp-concept .border {
    width: 90%;
    margin: 0 auto -2vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title {
    width: 40vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title::after {
    right: 5%;
    width: 23vw;
    height: 19.3vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-number {
    font-size: 14vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-ttl {
    font-size: 3vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-ttl span {
    font-size: 3.86vw;
  }
  .lp-concept .lp-concept-t .lp-concept-fukidashi {
    width: 56vw;
    margin: -2.2vw auto 5vw;
  }
  .lp-concept .lp-concept-t .lp-concept-txt {
    font-size: 2.4vw;
    margin-bottom: 8rem;
  }
  .lp-loan {
    padding: 12rem 0 10rem;
  }
  .lp-loan .lp-loan-title {
    width: 40rem;
    padding: 1rem 2rem;
  }
  .lp-loan .lp-loan-title .lp-loan-title-img {
    width: 8rem;
  }
  .lp-loan .lp-loan-title .lp-loan-title-ttl {
    font-size: 3.8rem;
  }
  .lp-loan .lp-loan-illust {
    position: absolute;
    top: -4%;
    right: 5%;
    width: 20vw;
  }
  .lp-loan .lp-loan-fukidashi {
    position: absolute;
    top: 23%;
    left: 2%;
    width: 9.5vw;
  }
  .lp-loan .lp-loan-fukidashi02 {
    position: absolute;
    top: 26%;
    right: 2%;
    width: 7vw;
  }
  .lp-loan .lp-loan-ttl {
    margin-bottom: 5rem;
    font-size: 5rem;
  }
  .lp-loan .lp-loan-ttl span {
    font-size: 3rem;
  }
  .lp-loan .lp-loan-text {
    font-size: 2.2rem;
  }
  .lp-loan .lp-loan-under {
    margin: 3rem auto 4rem;
  }
  .lp-loan .lp-loan-under .lp-triangle {
    margin: 0 auto 1rem;
  }
  .lp-loan .lp-lone-list li {
    height: 35rem;
  }
  .lp-loan .lp-lone-list li .number {
    margin-bottom: 1rem;
  }
  .lp-loan .lp-lone-list li .lp-lone-list-ttl {
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  .lp-loan .lp-lone-list li .lp-lone-list-txt {
    font-size: 2rem;
  }
  .lp-loan .lp-lone-list li .lp-loan-list-bg {
    width: 20vw;
  }
  .lp-loan .lp-lone-list li:nth-child(2) .lp-loan-list-bg {
    width: 26vw;
  }
  .lp-loan .lp-lone-list li:nth-child(4) .lp-loan-list-bg {
    width: 20vw;
  }
  .lp-merit {
    padding: 12rem 0 10rem;
  }
  .lp-merit .lp-merit-title {
    margin-bottom: 6rem;
  }
  .lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-subttl {
    font-size: 2.6rem;
  }
  .lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-ttl {
    margin-top: 0.8rem;
    margin-bottom: 1.6rem;
    font-size: 4rem;
  }
  .lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-ttl span {
    font-size: 6rem;
  }
  .lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-txt {
    font-size: 2.2rem;
    margin-bottom: 5rem;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-ttl {
    line-height: 2.6;
    font-size: 3rem;
  }
  .lp-merit .lp-merit-solve {
    padding: 12rem 4rem 4rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-img {
    top: 12%;
    right: -4.5%;
    width: 20vw;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-triangle {
    top: -1.4%;
    width: 36rem;
    height: 14rem;
    font-size: 3rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-ttl {
    font-size: 6rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-ttl span {
    font-size: 4rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-under {
    margin: 2rem auto 3rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-under .lp-triangle {
    margin: 0 auto 1rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li .solve-ttl {
    font-size: 2.6rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li .solve-txt {
    font-size: 2.2rem;
  }
  .lp-faq .qa-parts {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .lp-mainv .lp-mainv-block .lp-mainv-title {
    padding: 4vw 2.302083vw;
    width: 85vw;
    height: 20vw;
    margin: 0 auto 4rem;
    border-radius: 4vw;
    font-size: 7vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house {
    width: 85vw;
    height: 69.5vw;
    background-image: url(../img/lp/main-bg_sp.png);
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-txt {
    margin-bottom: 2rem;
    font-size: 3.8vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl {
    line-height: 1.1;
    font-size: 7.4vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl .lp-mainv-span {
    font-size: 5vw;
  }
  .lp-mainv .lp-mainv-block .lp-mainv-house .lp-mainv-house-ttl .lp-mainv-span02 {
    font-size: 4.8vw;
  }
  .lp-mainv .scroll-infinity .scroll-infinity__wrap .scroll-infinity__list .scroll-infinity__item {
    width: 200vw;
  }
  .lp-two-bt {
    max-width: 85%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 4rem auto 8rem;
  }
  .lp-two-bt .link-button {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 3vw;
    padding: 3vw 4vw;
  }
  .lp-two-bt .link-button .link-button__text {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 4.6vw;
  }
  .lp-two-bt .reverse-bt .link-button__icon {
    width: 9vw;
    min-width: 9vw;
    height: 9vw;
  }
  .lp-two-bt .reverse-bt .link-button__icon svg {
    width: 7vw;
  }
  .lp-concept {
    padding-bottom: 17rem;
  }
  .lp-concept .border {
    width: 100%;
    margin: 0 auto;
  }
  .lp-concept .lp-concept-t {
    padding-top: 26vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title {
    width: 63vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title::after {
    top: -2%;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 35vw;
    height: 29.4vw;
    margin: 0 auto;
  }
  .lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-number {
    font-size: 24vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-ttl {
    font-size: 4.5vw;
  }
  .lp-concept .lp-concept-t .lp-concept-title .lp-concept-title-ttl span {
    margin-top: 1vw;
    font-size: 5.8vw;
  }
  .lp-concept .lp-concept-t .lp-concept-fukidashi {
    width: 100%;
    margin: -4.2vw auto 5vw;
  }
  .lp-concept .lp-concept-t .lp-concept-txt {
    text-align: left;
    font-size: 3.6vw;
    margin-bottom: 4rem;
  }
  .lp-loan .lp-loan-title {
    top: -5rem;
  }
  .lp-loan .lp-loan-ttl {
    margin-bottom: 3.8rem;
    line-height: 1.2;
    font-size: 4rem;
  }
  .lp-loan .lp-loan-text {
    text-align: left;
    font-size: 3.6vw;
  }
  .lp-loan .lp-lone-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .lp-loan .lp-lone-list li {
    width: 100%;
    margin-bottom: 1.4rem;
  }
  .lp-loan .lp-lone-list li .lp-loan-list-bg {
    width: 40%;
  }
  .lp-loan .lp-lone-list li .lp-lone-list-txt {
    font-size: 3.6vw;
  }
  .lp-loan .lp-lone-list li:nth-child(2) .lp-loan-list-bg {
    width: 60%;
  }
  .lp-loan .lp-lone-list li:nth-child(3) {
    margin-bottom: 1.4rem;
  }
  .lp-loan .lp-lone-list li:nth-child(4) {
    margin-bottom: 1.4rem;
  }
  .lp-loan .lp-lone-list li:nth-child(4) .lp-loan-list-bg {
    width: 50%;
  }
  .lp-merit {
    padding: 9rem 0 8rem;
  }
  .lp-merit .lp-merit-main {
    padding: 5rem 3rem 6rem;
    clip-path: polygon(50% 0%, 100% 5%, 100% 100%, 0 100%, 0% 5%);
  }
  .lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-ttl {
    margin-bottom: 2.4rem;
    font-size: 3.2rem;
  }
  .lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-ttl span {
    display: inline-block;
    font-size: 5.4rem;
  }
  .lp-merit .lp-merit-main .lp-merit-main-ttl .lp-merit-txt {
    margin-bottom: 3rem;
    font-size: 3.6vw;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-ttl {
    padding: 1.8rem 0;
    line-height: 1.4;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img {
    margin-top: -12rem;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-img02 {
    width: 85%;
    z-index: 3;
  }
  .lp-merit .lp-merit-main .lp-merit-block .lp-merit-block-woman {
    right: 1%;
    bottom: 9%;
    width: 15%;
  }
  .lp-merit .lp-merit-solve {
    padding: 10rem 3rem 5rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-img {
    top: 2%;
    right: -4.5%;
    width: 24vw;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-triangle {
    top: -2.2%;
    width: 26rem;
    height: 11.1rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-ttl {
    font-size: 4rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-ttl span {
    font-size: 2.6rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li .solve-ttl {
    width: 100%;
    height: 8rem;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-top: 1.4rem;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
    font-size: 2.4rem;
  }
  .lp-merit .lp-merit-solve .lp-merit-solve-list .solve-li .solve-txt {
    width: 100%;
    font-size: 3.6vw;
  }
  .lp-faq {
    padding-top: 14rem;
  }
  .lp-faq .qa-parts02 {
    width: 17vw;
    top: 17%;
    right: -10%;
  }
  .lp-faq .lp-fap-title {
    margin-bottom: 5rem;
  }
  .lp-faq .lp-fap-title .lp-fap-title-img {
    position: absolute;
    top: 0.6%;
    left: 15%;
    width: 24vw;
  }
  .lp-faq .lp-fap-title .lp-faq-title-ttl {
    font-size: 7.8vw;
  }
  .lp-faq .lp-fap-title .lp-fap-title-img02 {
    position: absolute;
    top: 1.6%;
    right: -2%;
    width: 24vw;
  }
  .lp-faq .lp-faq-container .qa-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .lp-faq .lp-faq-container .qa-item:first-child {
    margin-top: 0rem;
  }
  .lp-faq .lp-faq-container .qa-item .qa-question {
    width: 100%;
    margin-bottom: 4rem;
    line-height: 1.4;
    font-size: 4.6vw;
  }
  .lp-faq .lp-faq-container .qa-item .qa-question .qa-text {
    font-size: 4.4vw;
  }
  .lp-faq .lp-faq-container .qa-item .qa-answer {
    width: 100%;
    font-size: 3.6vw;
  }
  .lp-contact {
    padding-top: 10rem;
  }
  .lp-contact .lp-contact-ttl {
    margin: -4rem 0 3rem;
    font-size: 4.2rem;
  }
  .lp-contact .lp-contact-ttl span {
    font-size: 3.2rem;
  }
  .lp-contact .lp-contact-img {
    width: 55%;
  }
}