
:root {
  --font-family-notoSansJp: "Noto Sans JP", sans-serif;
  --font-family-outfit: "Outfit", sans-serif;
  --font-family-delaGothic: "Dela Gothic One", sans-serif;
  --font-size-128: clamp(65px, 10vw, 128px);
  --font-size-96: clamp(60px, 3.7vw, 96px);
  --font-size-64: clamp(32px, 3.7vw, 64px);
  --font-size-48: clamp(30px, 5.8vw, 48px);
  --font-size-32: clamp(22px, 7vw, 32px);
  --font-size-24: clamp(20px, 3vw, 24px);
  --color-main: #F03737;
  --color-sub: #39496E;
}
main {
  overflow: hidden;
}
h1 {
  all: unset;
  &::before {
    content: unset;
  }
}
h2 {
  all: unset;
}
.header {
  all: unset;
}
body a:hover {
  opacity: 1;
}
a, a:visited {
  color: #111;
  &:hover {
    color: var(--color-main);
  }
}
img {
  width: 100%;
}
p {
  font-family: var(--font-family-notoSansJp);
}
dd {
  all: unset;
}
ul {
  all: unset;
}
li {
  list-style: none;
}
.inner {
  margin: 0 auto;
  width: min(1200px, 95%);
}
/*
共通
==============================================*/
.js-accordion > li{
	position: relative;
}
.js-accordion > li .ttl{
	position: relative;
}
.js-accordion > li .btn{
	width: 100%;
	height: 100%;
	cursor: pointer;
  transition: all .3s ease;
  &:hover {
    transform: scale(1.02);
  }
}
.js-accordion .ttl::before,
.js-accordion .ttl::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
	transition: all ease 0.3s;
	background-image: url("./library/images/qa_open.svg");
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 5px;
}
.js-accordion .ttl::after {
	background-image: url("./library/images/qa_close.svg");
	opacity: 0;
}
.js-accordion .open .ttl::before {
	opacity: 0;
}
.js-accordion .open .ttl::after {
	opacity: 1;
}
.js-accordion .box {
	display: none;
}
.js-box {
  opacity: 0;
  transition: all .5s ease-in;
}
.js-box.ready {
  opacity: 1;
} 
.rec-lp .want .js-box {
  transform: translateX(20px);
}
.rec-lp .want .js-box.ready {
  transform: translateX(0);
}
.rec-lp .merit .js-box {
  transform: translateX(20px);
}
.rec-lp .merit .js-box.ready {
  transform: translateX(0);
}
.rec-lp .process .js-box {
  transform: translateY(10px);
}
.rec-lp .process .js-box.ready {
  transform: translateY(0);
}
.js-txtani_01 span {
  display:inline-block; overflow:hidden;
}
.js-txtani_01 > span > span {
  transform: translateY(100%);
  animation: showTextFromBottom .5s both;
  animation-delay: calc(var(--i) * 0.05s); 
  will-change: transform;
}
.js-txtaniWrap:not(.is-animated) .js-txtani_01 > span > span {
  animation: none;
}

@keyframes showTextFromBottom {
  to { transform: translateY(0); }
}
/*
header
==============================================*/
.rec-lp .headerArea-pc {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 998;
  display: flex;
  justify-content: space-between;
  padding: 8px 8px 8px 12px;
  border-radius: 40px;
  margin: 0 auto;
  width: min(1824px, 95%);
  background-color: #fff;
  box-shadow: 2px 3px 12px -10px #000000;
}
.nav_logoArea {
  align-content: center;
}
.nav_logoArea h1 {
  display: flex;
  align-items: center;
}
.nav_logoArea img {
  width: clamp(200px, 5vw, 346px);
}
.nav_logoArea span {
  padding: 4px 12px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 12px;
  color: #fff;
  background-color: var(--color-main);
}
.rec-lp nav {
  width: fit-content;
}
.rec-lp .navList {
  display: flex;
  align-items: center;
  height: 100%;
  column-gap: 40px;
}
.rec-lp .navList li {
  font-size: 15px;
  font-family: var(--font-family-notoSansJp);
  font-weight: 600;
  white-space: nowrap;
}
.rec-lp .entry-btn {
  position: relative;
  border-radius: 9999px;
  width: 200px;
  height: 55px;
  overflow: hidden;
}
.rec-lp .entry-btn a {
  position: absolute;
  left: -35px;
  display: flex;
  column-gap: 20px;
  align-items: center;
  border-radius: 10px;
  height: 100%;
  font-family: var(--font-family-outfit);
  font-weight: 600;
  font-size: 20px;
  white-space: nowrap;
  color: #fff;
  background-color: var(--color-sub);
  transition: all .3s ease-in;
  &:hover {
    background-color: var(--color-main);
    animation: loop-slide 6s infinite linear both;
  }
}
.rec-lp .entry-btn a span {
  height: fit-content;
}
.rec-lp .nav-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  padding: 8px 7px;
  border-radius: 7px;
  width: 45px;
  height: 45px;
  background-color: var(--color-sub);
}
.rec-lp .nav-trigger span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
}
/* 
 smartphone menu btn
----------------------------------------------------------- */
.spnavbtn {
	position:fixed;
	top:4%;
	right:2%;
	z-index:1000;
	text-align:center;
	padding:12px 10px 5px 11px;
	cursor:pointer;
	display:none;
}
.nav-trigger, .nav-trigger span {
	display: inline-block;
	transition: all ease 0.5s;
	box-sizing: border-box;
}
.nav-trigger {
	position: relative;
	width: 30px;
	height: 18px;
}
.nav-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--color-sub);
	border-radius: 20px;
}
.nav-trigger span:nth-of-type(1) {
	top: 0;
}
.nav-trigger span:nth-of-type(2) {
	top: 8px;
}
.nav-trigger span:nth-of-type(3) {
	bottom: 0;
}
/* 
 smartphone menu btn click
----------------------------------------------------------- */
.spnavbtn .activete {
	font-size:0.9em;
	opacity:0;
}
.nav-trigger.active span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
}
.nav-trigger.active span:nth-of-type(2) {
	left: 60%;
	opacity: 0;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
.nav-trigger.active span:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
}
/* 
 smartphone menu btn click area
----------------------------------------------------------- */
.spnav {
	position:relative;
	z-index:999;
}
.sp_close{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 998;
	display: none;
}
.sp_close.open{
	display: inherit;
}
.spnav .trigger {
	width:300px;
	height:100%;
	transition:all ease 0.5s;
	position:fixed;
	top:0;
	left:-300px;
	overflow-y:scroll;
}
.spnav .open {
	width:450px;
	max-width:90%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
  z-index: 999;
	overflow-y:scroll;
	backdrop-filter: saturate(140%) blur(20px) brightness(130%);
	background: rgba(255,255,255,0.8);
}
.spnav .trigger > p {
	width:100%;
	padding:15px;
	text-align:center;
}
.spnav .trigger > p img {
	height: 40px;
	width: auto;
	margin:0 auto;
}
.spnav .trigger > ul li {
	border-bottom:1px solid var(--color-main);
	font-size:0.9rem;
	transition:all ease 0.5s;
	line-height: 1.2;
}
.spnav .trigger > ul li a,
.spnav .trigger > ul li p{
	padding: 15px;
	display: block;
	position: relative;
	z-index: 1;
}
.spnav .trigger > ul > li:last-child {
	border-bottom:1px solid var(--color-main);
}
.spnav ul li ul li:last-child {
	border-bottom:none;
}
.nav_logoArea.sp a {
  display: block;
  padding: 10px;
}
.nav_logoArea.sp img {
  display: block;
  margin: 0 auto;
  width: clamp(240px, 51vw, 346px);
}
.nav_logoArea.sp span {
  display: block;
  margin: 15px auto 0;
  width: fit-content;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-41%);
  }
}




/*
fv
==============================================*/
.rec-lp .fv {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #fff;
}
.rec-lp .fv .inner {
  display: flex;
  width: min(1825px, 95%);
}
.rec-lp .fv .txtArea {
  padding: 100px 0 80px;
  width: 530px;
  align-content: end;

}
.rec-lp .fv .txtArea strong {
  line-height: 1.2;
  font-family: var(--font-family-delaGothic);
  font-size: var(--font-size-64);
  font-weight: 400;
  color: var(--color-main);
}
.rec-lp .fv .txtArea p {
  font-size: 20px;
  font-weight: 600;
  color: #F03737;
}
.rec-lp .fv .txtArea .handle {
  position: relative;
  top: 10px;
  display: inline-block;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background-image: url(../images/rec-lp_fv_icon-handle.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rec-lp .fv .imgArea {
  position: relative;
  top: 13%;
  margin-right: calc(50% - 50vw);
  width: min(1340px, 100%);
  aspect-ratio: 134 / 83;

}
/*
want
==============================================*/
.rec-lp .want {
  padding: min(110px, 6%) 0 90px;
  background-color: var(--color-main);
}
.rec-lp .txtLine {
  position: relative;
  display: block;
  height: 130px;
  width: 100%;
  overflow: hidden;
  &::before,&::after {
    content: 'IDEAL　IDEAL　IDEAL　IDEAL';
    position: absolute;
    top: 0;
    width: 1862px;
    text-align:center;
    line-height: 1;
    font-size: 128px;
    font-family: var(--font-family-outfit);
    font-weight: 600;
    background: linear-gradient(180deg, #fc5151 0%, #e62626 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    animation: flowing 60s linear infinite;
  }
  &::before {
    left: 0;
  }
  &::after {
    left: 1962px;
  }
}
@keyframes flowing {
  0%{
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1862px);
  }
}
@keyframes flowing-sp {
  0%{
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1213px);
  }
}
.rec-lp .want .inner > .ttlArea {
  margin-bottom: 50px;
  color: #fff;
}
.rec-lp .want .inner > .ttlArea p {
  font-size: 20px;
  font-weight: 600;
}
.rec-lp .want .inner > .ttlArea h2 {
  line-height: 1.4;
  font-size: var(--font-size-48);
  font-family: var(--font-family-delaGothic);
  font-weight: 400;
}
.rec-lp .want .ideal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.rec-lp .want .ideal li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: calc(calc(100% - 15px) / 2);
  padding: 60px 50px;
  border-radius: 10px;
  background-color: #fff;
}
.rec-lp .want .ideal li .num {
  display: block;
  padding: 0 17px;
  border-radius: 9999px;
  margin: 0 auto 12px;
  width: fit-content;
  line-height: 1.6;
  text-align: center;
  font-size: 18px;
  font-family: var(--font-family-outfit);
  background-color: var(--color-main);
  color: #fff;
}
.rec-lp .want .ideal li h3 {
  text-align: center;
  font-size: var(--font-size-24);
  font-family: var(--font-family-notoSansJp);
  font-weight: 800;
  color: var(--color-main);
}
.rec-lp .want .ideal .imgArea {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 148px;
  border-radius: 10px;
  background-color: #E7E6F0;
}
.rec-lp .want .ideal .imgArea img {
  object-fit: contain;
  height: 90px;
}
.rec-lp .want .ideal .txtArea {
  width: 100%;
}
.rec-lp .want .ideal .txtArea p {
  line-height: 1.5;
  font-weight: 600;
 font-size: 18px; 
 font-family: var(--font-family-notoSansJp);
}
.rec-lp .want .ideal .txtArea .highlight {
  font-size: 22px;
  color: var(--color-main);
}
.rec-lp .features {
  position: relative;
  padding-bottom: 140px;
  background-image: url(../images/rec-lp_features_backimg.png);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
}
.rec-lp .features .sp {
  display: none;
}
.rec-lp .features .ttlArea {
  padding-bottom: 50px;
  font-size: var(--font-size-24);
  background-color: var(--color-main);
  color: #fff;
}
.rec-lp .features .ttlArea h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-family-delaGothic);
}
.rec-lp .features .ttlArea .highlight {
  font-size: var(--font-size-48);
  line-height: 1;
}
.rec-lp .features .txtArea {
  display: block;
  padding: 65px 15px;
  margin: 0 auto;
  width: fit-content;
  font-size: 18px;
  font-family: var(--font-family-notoSansJp);
  font-weight: 900;
  color: var(--color-main);
}
.rec-lp .features .txtArea p {
  margin-bottom: 25px;
}
.rec-lp .features .txtArea .line {
  color: #fff;
  background-color: var(--color-main);
  padding: 0 3px;
  border-radius: 5px;
}
.rec-lp .entry-line {
  position: absolute;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
  height: 330px;
  width: min(1824px, 95%);
  overflow: hidden;
}
.rec-lp .entry-line .content {
  display: flex;
  justify-content: space-between;
  width: 2500px;
  text-align:center;
  line-height: 1;
  font-size: 160px;
  font-family: var(--font-family-outfit);
  font-weight: 600;
  color: #fff;
  animation: entry-line 20s linear infinite;
}
.rec-lp .entry-line .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 320px;
  width: fit-content;
  height: 100%;
  background-color: var(--color-sub);
  transition: all .3s ease-in;
  &:hover {
    background-color: var(--color-main);
    .content {
      animation: entry-line 15s linear infinite;
    }
    span {
      opacity: .6;
    }
  }
}
.rec-lp .entry-line .content span {
  position: relative;
  letter-spacing: 0.13em;
  opacity: .1;
  &::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -270px;
    width: 240px;
    height: 120px;
    background-image: url(../images/rec-lp_entry-line_arrowimg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@keyframes entry-line {
  0%{
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1862px);
  }
}
.rec-lp .merit {
  position: relative;
  z-index: 10;
  padding: 250px 0 130px;
  width: 100%;
}
.bg-image-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  clip-path: inset(0);
  z-index: -1;
}
.bg-image-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-image: url(../images/rec-lp_merit_backimg.png);
}
.rec-lp .merit .inner {
  display: flex;
  column-gap: 20px;
  width: min(1824px, 95%);
}
.rec-lp .merit .ttlArea {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  width: clamp(180px, 19vw, 460px);
}
.rec-lp .merit .ttlArea .ttl {
  margin-bottom: 60px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-family-delaGothic);
  font-size: var(--font-size-48);
  color: var(--color-main);
}
.rec-lp .merit .ttlArea .iconArea {
  position: relative;
  width: 130px;
  aspect-ratio: 1 / 1;
}
.rec-lp .merit .ttlArea .iconArea .handle {
  animation: handle 12s ease-in-out infinite;
}
@keyframes handle {
  0%{
    transform: rotate(0);
  }
  10% {
    transform: rotate(-45deg);
  }
  20% {
    transform: rotate(-30deg);
  }
  30% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate();
  }
  60% {
    transform: rotate(45deg);
  }
  70% {
    transform: rotate(30deg);
  }
  80% {
    transform: rotate(45deg);
  }
  100% {
    transform: translateX(0);
  }
}
.rec-lp .merit .ttlArea .iconArea .aroundtxt {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 145%;
  animation: rotate 12s linear infinite;
}
@keyframes rotate {
  0%{
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.rec-lp .merit .contents {
  flex: 1;
}
.rec-lp .merit .contents li {
  display: flex;
  column-gap: 25px;
  padding: 50px 20px 50px 70px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 4px 9px 1px -5px var(--color-main);
  + li {
    margin-top: 20px;
  }
}
.rec-lp .merit .contents li .imgArea {
  width: 370px;
  height: 246px;
}
.rec-lp .merit .contents li .txtArea {
  flex: 1;
}
.rec-lp .merit .contents li .txtArea h3 {
  margin-bottom: 25px;
  line-height: 1.5;
  font-size: var(--font-size-32);
  font-family: var(--font-family-delaGothic);
  color: var(--color-main);
}
.rec-lp .merit .contents li .txtArea p {
  font-size: 18px;
  font-weight: 700;
}
.rec-lp .support {
  position: relative;
  padding: 160px 0 170px;
  width: 100%;
  background-image: url(../images/rec-lp_features_backimg.png);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
}
.rec-lp .support .ttlArea {
  width: min(996px, 95%);
  margin: 0 auto 40px;
  color: var(--color-main);
}
.rec-lp .support .ttlArea p {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-family-notoSansJp);
}
.rec-lp .support .ttlArea h2 {
  line-height: 1.1;
  font-family: var(--font-family-delaGothic);
  font-size: var(--font-size-48);
}
.rec-lp .support .contents {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: var(--color-main);
}
.rec-lp .support .contents > li {
  position: relative;
  z-index: 10;
  padding: 40px;
  border: 1px solid var(--color-main);
  border-radius: 10px;
  width: 33.3%;
  background-color: #fff;
  &:nth-child(2n) {
    background-color:#FFEBEB;
  }
}
.rec-lp .support .contents > li .contents_ttl {
  display: block;
  position: relative;
  padding: .5em 1em;
  border: 1px solid var(--color-main);
  border-right: 12px solid var(--color-main);
  margin: 0 auto 25px;
  width: fit-content;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-family-notoSansJp);
  background-color: #fff;
  color: #333333;
  &::after {
    position: absolute;
    bottom: -7px;
    right: -6px;
    z-index: -1;
    transform: rotate(5deg);
    width: 39%;
    height: 72%;
    background-color: #FFCECE;
    content: "";
    filter: blur(3px);
  }
}
.rec-lp .support .contents > li .highlight {
  color: var(--color-main);
}
.rec-lp .support .contents > li img{
  display: block;
  margin: 0 auto 20px;
  width: 110px;
  aspect-ratio: 1 / 1;
}
.rec-lp .support .contents .txtList {
  font-family: var(--font-family-notoSansJp);
  font-weight: 500;
  font-size: 17px;
}
.rec-lp .support .contents .txtList li {
  padding-left: 16px;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    display: block;
    border-radius: 9999px;
    width: 10px;
    aspect-ratio: 1 / 1;
    background-color: var(--color-main);
  }
}
.rec-lp .support .note {
  width: fit-content;
  padding: 0 5%;
  margin: 60px auto;
}
.rec-lp .support .note p {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
}
.rec-lp .req {
  padding: 300px 0 60px;
  width: 100%;
  background-color: var(--color-main);
}
.rec-lp .req .sp {
  display: none;
}
.rec-lp .req .ttlArea {
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.rec-lp .req .ttlArea p {
  font-size: 20px;
  font-weight: 600;
}
.rec-lp .req .ttlArea h2 {
  line-height: 1.4;
  font-size: var(--font-size-48);
  font-family: var(--font-family-delaGothic);
}
.rec-lp .req .contents {
  display: block;
  margin-top: 40px;
}
.rec-lp .req .contents > li {
  border-radius: 10px;
  background-color: #fff;
  + li {
    margin-top: 20px;
  }
}
.rec-lp .req .contents > li.open {
  padding-bottom: 40px;
}
.rec-lp .req .contents .btn {
  position: relative;
  padding: 30px;
  padding-left: 60px;
  border-radius: 10px;
  font-size: var(--font-size-24);
  font-family: var(--font-family-notoSansJp);
  background-color: #fff;
  color: var(--color-main);
  &::before,&::after {
    content: "";
    position: absolute;
    top: 50%;
    right: min(70px, 6vw);
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 3px;
    background-color: var(--color-main);
  }
  &::before {
    transform: translateY(-50%) rotate(90deg);
    transition: rotate .5s ease;
  }
}
.rec-lp .req .contents .btn.open::before {
  transform: translateY(-50%) rotate(0);
}
.rec-lp .req .contents h3 {
  position: relative;
  font-size: var(--font-size-24);
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    background-color: var(--color-main);
  }
}
.rec-lp .req .contents .box {
  padding: 20px 100px 30px;
  border-radius: 10px;
  margin: 0 auto;
  font-size: 16px;
  width: min(1070px, 95%);
  background-color: #F4F4F4;
}
.rec-lp .req  .box table {
  width: 100%;
  font-family: var(--font-family-notoSansJp);
}
.rec-lp .req  .box tr {
  border-bottom: 1px solid #DBDBDB;
}
.rec-lp .req  .box th {
  width: min(150px, 14vw);
}
.rec-lp .req  .box td  {
  padding: 20px 0;
}
.rec-lp .req  .box td p + p {
  margin-top: 20px;
}
.rec-lp .req  .box li {
  list-style: inside;
  text-indent: -1em;
  padding-left: 1em;
}
.rec-lp .req .bar-under {
  position: relative;
  &::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    display: block;
    width: 272px;
    height: 1px;
    background-color: #707070;
  }
}
.rec-lp .req .numVal {
  font-weight: 900;
  text-decoration: underline;
}
.rec-lp .process {
  width: 100%;
}
.rec-lp .process .inner {
  padding: 100px 0 40px;
  width: min(1824px, 95%);
}
.rec-lp .process .ttlArea {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-main);
  margin-bottom: 3px;
  line-height: 1;
  color: var(--color-main);
  &::before {
    content: "PROCESS";
    position: absolute;
    right: 0;
    bottom: -15px;
    font-family: var(--font-family-outfit);
    font-weight: 600;
    font-size: var(--font-size-128);
    color: #EAEAEA;
  }
  &::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-main);
  }
}
.rec-lp .process .ttlArea h2 {
  font-size: var(--font-size-48);
  font-family: var(--font-family-delaGothic);
}
.rec-lp .process .contents {
  padding: 120px 0 100px;
  background-color: #EAEAEA;
}
.rec-lp .process .contents dl {
  margin: 0 auto;
  width: min(1200px, 95%);
}
.rec-lp .process .item {
  position: relative;
  display: flex;
  column-gap: 60px;
  + .item {
    margin-top: 130px;
  }
  &::before {
    content: "";
    position: absolute;
    bottom: -55px;
    right: 0;
    display: block;
    width: calc(100% - 150px);
    height: 2px;
    background-color: #C1C1C1;
  }
}
.rec-lp .process .item:not(:first-of-type) {
  &::after {
    content: "";
    position: absolute;
    top: -77px;
    left: 40px;
    transform: rotate(-45deg);
    display: block;
    width: 10px;
    aspect-ratio: 1 / 1;
    border-left: 2px solid var(--color-main);
    border-bottom: 2px solid var(--color-main);
  }
}
.rec-lp .process .item:last-child::before {
  width: 100%;
}
.rec-lp .process .contents dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 60px;
  min-width: 283px;
}
.rec-lp .process .contents dt .num {
  position: relative;
  line-height: 1;
  font-size: var(--font-size-96);
  font-family: var(--font-family-outfit);
  color: var(--color-main);
}
.rec-lp .process .contents dt .content_ttl {
  display: flex;
  flex-direction: column;
  min-width: 128px;
  line-height: 1.3;
  font-size: var(--font-size-32);
  font-family: var(--font-family-notoSansJp);
}
.rec-lp .process .contents dt .en {
  letter-spacing: .2em;
  font-size: 20px;
  font-family: var(--font-family-outfit);
  color: #C4C4C4;
}
.rec-lp .process .contents dd {
  font-size: 18px;
}
.rec-lp .process .contents .highlight {
  padding: 6px 17px;
  border-radius: 3px;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-main);
}
.rec-lp .mess {
  padding-bottom: 60px;
  width: 100%;
   background-image: url(../images/rec-lp_features_backimg.png);
  background-size: auto;
  background-position: center;
  background-repeat: repeat;
}
.rec-lp .mess .ttlArea {
  padding: 50px 10px;
  text-align: center;
  line-height: 1;
  font-size: var(--font-size-48);
  font-family: var(--font-family-delaGothic);
  font-weight: 500;
  color: #fff;
  background-color: var(--color-main);
}
.rec-lp .mess .txtArea {
  padding: 50px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-main);
}
.rec-lp .mess .entry-line {
  position: static;
  transform: unset;
}
.footer-lp {
  padding: 60px 10px;
  background-color: var(--color-main);
}
.footer-lp dt a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.footer-lp dt img {
  width: min(346px, 95%);
}
.footer-lp dt span {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-family: var(--font-family-notoSansJp);
  color: var(--color-main);
  background-color: #fff;
}
.footer-lp .in-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 15px;
}
.footer-lp .in-links li a {
  color: #fff;
  font-weight: 600;
  &:hover {
    opacity: .7;
  }
}
.footer-lp .hp-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-lp .hp-links li {
  border-radius: 9999px;
  width: 300px;
  overflow: hidden;
}
.footer-lp .hp-links a {
  position: relative;
  display: block;
  padding: 13px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-main);
  background-color: #fff;
  transition: all .3s ease;
  &::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    border-radius: 9999px;
    width: 41px;
    aspect-ratio: 1 / 1;
    background-color: var(--color-main);
    background-size: unset;
    background-position: center;
    background-repeat: no-repeat;
  }
  &:hover {
    letter-spacing: .5em;
    color: var(--color-sub);
  }
  &:hover::before {
    background-color: var(--color-sub);
    animation: icon-rotateY 1s ease-in-out;
  }
}
.footer-lp .hp-links li:first-child a::before {
  background-image: url(../images/footer-lp_icon-link_form.svg);
}
.footer-lp .hp-links li:nth-child(2) ::before {
  background-image: url(../images/footer-lp_icon-link_hp.svg);
}
@keyframes icon-rotateY {
  0%{
    transform: rotateY(0) translateY(-50%);
  }
  50% {
    transform: rotateY(180deg)  translateY(-50%);
  }
  100% {
    transform: rotateY(360deg) translateY(-50%);
  }
}
.cop {
  height: 22px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-color: var(--color-main);
}








































@media  screen and (max-width: 1400px) {
  .rec-lp .navList {
  display: flex;
  column-gap: 20px;
}
}
@media  screen and (max-width: 1200px) {
  .rec-lp .headerArea-pc {
    padding: 8px 30px;
  }
  .rec-lp .headerArea-pc nav,
  .rec-lp .headerArea-pc .entry-btn {
    display: none;
  }
  /* 
	 smartphone menu btn
	----------------------------------------------------------- */
	.spnavbtn {
		top:18px;
		right:45px;
		padding:10px 10px 5px 11px;
		display:block;
	}
	.nav-trigger {
		width: 30px;
	}
  .rec-lp .want {
    padding: 5% 0 90px;
  }
  .rec-lp .merit .contents li {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    padding: 40px 15px;
  }
  .rec-lp .merit .contents li .imgArea  {
    width: 100%;
    height: auto;
  }
  .rec-lp .merit .contents li .imgArea img {
    height: 100%;
    object-fit: cover;
    object-position: 0 center;
  }
  .rec-lp .merit .contents li .txtArea {
    width: 100%;
  }
  .rec-lp .support .contents {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.rec-lp .req .contents .box {
  padding: 20px 5% 30px;
}
}
@media  screen and (max-width: 820px) {
  .rec-lp .entry-line {
    bottom: -130px;
    height: 270px;
  }
  .rec-lp .entry-line .content {
    font-size: 150px;
  }
  .rec-lp .fv .inner {
    position: relative;
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 45vw;
  }
  .rec-lp .fv .txtArea {
  padding: 85px 0 0;
  width: 100%;
}
  .rec-lp .fv .imgArea {
    position: absolute;
    top: 310px;
    margin: 0;
    width: 100%;
  }
  .rec-lp .want {
    padding-top: 27vw;
  }
  .rec-lp .want .ideal {
  flex-direction: column;
  justify-content: unset;
  flex-wrap: wrap;
  gap: 30px;
}
.rec-lp .want .ideal li {
  padding: 50px 15px;
  width: 100%;
}
.rec-lp .txtLine {
  &::before,&::after {
    content: 'IDEAL IDEAL IDEAL IDEAL';
    font-size: 100px;
    width: 1213px;
    animation: flowing-sp 60s linear infinite;
  }
  &::after {
    left: 1225px;
  }
}
.rec-lp .features .sp {
  display: block;
}
.rec-lp .features .txtArea {
  padding: 40px 15px;
}
 .rec-lp .support .contents {
   flex-direction: column;
  }
  .rec-lp .support .contents li {
    width: 100%;
  }

.rec-lp .req {
  padding: 220px 0 60px;
}
.rec-lp .process .item {
  flex-direction: column;
  row-gap: 20px;
  &::before {
    width: calc(100% - 100px);
  }
}
.rec-lp .process .contents dt {
  column-gap: 40px;
  justify-content: start;
}
.rec-lp .process .contents dd {
  margin-left: 100px;
}






















}
@media  screen and (max-width: 640px) {
  .rec-lp .entry-line .inner {
    column-gap: 220px;
  }
  .rec-lp .entry-line .content {
    width: 1600px;
    font-size: 100px;
  }
  .rec-lp .entry-line .content span::after {
    top: 15px;
    right: -190px;
    width: 176px;
    height: 88px;
  }
  .rec-lp .entry-line {
    bottom: -115px;
    height: 240px;
  }
 header.rec-lp a span {
  display: none;
 }
 .rec-lp .merit {
  padding-top: 200px;
  padding-bottom: 100px;
 }
 .rec-lp .merit .inner {
  flex-direction: column;
 }
 .rec-lp .merit .ttlArea {
  position: static;
  flex-direction: row;
  justify-content: space-around;
  margin-bottom: 20px;
  width: 100%;
 }
 .rec-lp .merit .ttlArea .ttl {
  writing-mode: horizontal-tb;
  margin-bottom: 0;
  line-height: 1.3;
 }
 .rec-lp .merit .ttlArea .iconArea {
   width: clamp(50px, 16vw, 90px);
  }
  .rec-lp .merit .ttlArea .iconArea .aroundtxt {
    top: -23%;
    left: -23%;
  }

 .rec-lp .merit .contents {
  width: 100%;
 }
 .rec-lp .support {
  padding: 120px 0 150px;
 }
 .rec-lp .support .note {
  padding: 0 5%;
}
.rec-lp .support .note p {
  text-align: left;
}
 .rec-lp .req .sp {
   display: block;
  }
  .rec-lp .req  .box tr:not(:last-of-type) {
  display: block;
  margin-bottom: 20px;
  }
  .rec-lp .req .box td {
    display: block;
    width: 100%;
  }
  .rec-lp .req .box th {
    display: block;
    width: 100%;
  }
  .rec-lp .mess .txtArea {
    padding: 50px 5%;
  }
  .rec-lp .mess .txtArea p {
    text-align: left;
  }
  .rec-lp .process .inner {
    padding-top: 60px;
  }
  .rec-lp .process .item {
  &::before {
    width: calc(100% - 65px);
  }
}
.rec-lp .process .ttlArea::before {
  display: none;
}
.rec-lp .process .item:not(:first-of-type) {
  &::after {
    left: 25px;
  }
}
.rec-lp .process .contents dt {
  column-gap: 20px;
}
.rec-lp .process .contents dt .num {
  font-size: 50px;
}
.rec-lp .process .contents dd {
  margin-left: 65px;
}
.footer-lp dt a {
  flex-direction: column;
  gap: 6px;
}

.footer-lp .in-links {
  flex-direction: column;
  align-items: center;
}
.footer-lp .hp-links {
  flex-direction: column;
  align-items: center;
}
@keyframes entry-line {
  0%{
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1200px);
  }
}
}




































































































