/* common */
.mgLP__heading {
    display: flex;
    flex-direction: column;
    text-align: center;
}
p.mgLP__heading--sub {
    color: var(--main-primary);
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}
.mgLP__heading h2 {
    color: var(--main-text);
    font-weight: 600;
    font-size: 1.9rem;
    letter-spacing: 2px;
}

/* base */
main#managementBG {
    position: relative;
    background: #EDF0F5;
}

/* mv */
.manageSupport__inner {
    flex-direction: row;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    padding: 200px 0 500px;
    position: relative;
    justify-content: space-between;
    align-items: center;
}
.manageSupport__inner--left {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
	z-index: 2;
}
.manageSupport__inner--left h2 {
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--main-blue);
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: fit-content;
}
.manageSupport__inner--left h2 span {
    font-size: 1.1rem;
    border: solid 1px;
    border-radius: 3px;
    padding: 4px 12px 8px;
    display: flex;
    justify-content: center;
}
.manageImg {
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 470px;
	margin: 10px 0;
}
.manageImg img {
    width: 100%;
}
img.spImg {
    display: none;
}
.manageSupport__inner--left a.primaryBtn {
    width: fit-content;
}
.manageSupport__inner--right {
    position: absolute;
    right: 0;
    width: 72%;
    top: 60px;
}

/* jisseki */
.managementMV__inner--bottom {
    width: 100%;
    max-width: 900px;
    margin: -100px auto 0;
    z-index: 3;
}
.managementMV__inner--bottomJisseki {
    display: flex;
    position: relative;
    justify-content: center;
}
.managementMV__inner--bottomJisseki p {
    padding: 0 12px;
    color: var(--main-blue);
    font-size: 1.6rem;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
}
.managementMV__inner--bottomJisseki p:before, .managementMV__inner--bottomJisseki p:after {
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 22px;
    height: 2px;
    border-radius: 3px;
    background-color: var(--main-blue);
    content: "";
}
.managementMV__inner--bottomJisseki p:before {
    left: -25px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
}
.managementMV__inner--bottomJisseki p:after {
    right: -25px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
}
.managementMV__inner--bottomCorp {
    border-radius: 5px;
    border: 13px solid #FFF;
    background: #EDF4FF;
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.02);
    display: flex;
    padding: 30px 45px 60px;
	position: relative;
}
.managementMV__inner--bottomCorp:hover {
    box-shadow: 0 19px 27px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}
.jissekiCorp__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
p.jissekiCorp__name {
    line-height: 1;
    color: var(--main-blue);
    font-size: 1.1rem;
}
p.jissekiCorp__name span {
    font-size: 0.9rem;
    margin-left: 3px;
}

.jissekiCorp__right h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-blue);
	letter-spacing: 2px;
}
ul.jissekiCorp__tags {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}
ul.jissekiCorp__tags li {
    background: #fff;
    border-radius: 5px;
    padding: 3px 16px 6px;
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}
button.caselinks {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background: #fff;
    padding-top: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--main-blue);
    letter-spacing: 1px;
	cursor: pointer;
}
button.caselinks:after {
    content: "\f2d2";
    font-family: "Font Awesome 5 Free";
    padding-left: 7px;
    font-weight: 100;
    opacity: 0.7;
}

/* process */
section#mgProcess {
    position: relative;
    background: #fff;
    padding-bottom: 40px;
}
section#mgProcess:before {
    content: "";
    width: 100%;
    height: 300px;
    background: #fff;
    position: absolute;
    top: -120px;
    clip-path: ellipse(52% 48% at 50% 50%);
    background-size: cover;
}
section#mgProcess:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -40px;
    border: 40px solid transparent;
    border-top: 40px solid #fff;
}
.mgProcess__inner {
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    position: relative;
    padding: 0;
	gap: 60px;
	z-index: 2;
}
.mgProcess__inner--graph {
    background: #FAFBFE;
    padding: 55px 60px;
    border-radius: 5px;
	position: relative;
}
.mgProcess__inner--graph:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -20px;
    border: 20px solid transparent;
    border-top: 20px solid #FAFBFE;
}
.mgProcess__inner--graphInner {
    border: solid 2px var(--main-primary);
    position: relative;
    border-radius: 5px;
    padding: 60px 35px 35px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.mgProcess__inner--graphInnerHeading {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    background: #FAFBFE;
    padding: 0 30px;
}
.mgProcess__inner--graphInnerHeading img {
    width: 250px;
    height: auto;
}
.mgProcess__inner--graphInner h3 {
    text-align: center;
    color: var(--main-primary);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 1px;
}
.mgProcess__inner--graphInnerlist {
    position: relative;
    padding-top: 40px;
}
/* graph */
.graphText {
    position: absolute;
    top: 0;
    height: 100%;
    border-radius: 5px;
    background: #CCC;
    left: 0;
    width: calc(100% / 5 * 2);
    text-align: center;
    font-weight: 600;
    padding-top: 2px;
}
ul.graphflow {
    position: relative;
    padding: 0px 15px 15px;
    display: flex;
    gap: 30px;
}
ul.graphflow li {
    background: #FFF;
    width: calc(100% - 30px / 5);
    height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 500;
    filter: drop-shadow(0px 0px 10px rgb(0, 0, 0, 0.1));
}
ul.graphflow li span {
    position: absolute;
    bottom: 45px;
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    width: 70%;
}
ul.graphflow li:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -20px;
    border: 20px solid transparent;
    border-left: 20px solid #fff;
}
ul.graphflow li:last-child:after {
    content: none;
}
h4.mgProcess__inner--graphDesc {
    color: var(--main-blue);
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.83;
    position: relative;
}
/* mv under */
.hatenaPerson {
    position: absolute;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
}
span.headRed {
    color: var(--main-primary);
}
ul.assignments {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
li.assignment {
    width: calc(100% / 3 - 20px);
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0 0 1px 0 #000;
    padding: 20px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    line-height: 1.63;
}
li.assignment h3 {
    color: var(--main-text);
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.2px;
}
li.assignment h3 span {
    display: block;
}
.assignmentsImg {
    display: inline-block;
    margin: 0 auto;
    margin-top: -40px;
}
/* five solution */
section#fiveSolution {
    position: relative;
    overflow: hidden;
}
section#fiveSolution:before {
    content: "";
    width: 600px;
    height: 800px;
    background: url(/wp-content/uploads/2025/07/benetop.svg) no-repeat;
    position: absolute;
    top: -80px;
    right: 0;
    background-size: cover;
}
.fiveSolution__inner {
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    position: relative;
    gap: 80px;
    padding: 100px 0 80px;
}
span.miniHead {
    font-size: 1.2rem;
    display: block;
}
ul.fiveSolution__inner--lists {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
li.fiveSolution__inner--list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 80px;
}
.fiveSolution__inner--listLeft {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: calc(100% / 2 - 40px);
}
.listHeading {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
p.listnumber {
    position: absolute;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: var(--main-blue);
    font-size: 5.9rem;
    font-style: italic;
    top: -50px;
    left: -50px;
    opacity: 0.1;
    line-height: 1;
}
p.listInSub {
    font-weight: 600;
    font-size: 1.2rem;
}
.listHeading h3 {
    color: var(--main-blue);
    font-weight: 600;
    font-size: 2.3rem;
    letter-spacing: 1px;
}
.listDesc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fiveSolution__inner--listRight {
    width: calc(100% / 2 - 40px);
    background: #fff;
    height: 300px;
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 5px;
}
.fiveSolution__inner--listRight img {
    width: 100%;
    height: auto;
    transform: scale(1.2);
}
li.fiveSolution__inner--list:nth-child(even) {
    flex-direction: row-reverse;
}

/* professionnal */
.professional__inner {
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    position: relative;
    gap: 60px;
    padding: 60px 0 60px;
}
.professional__inner:after {
    content: "";
    width: 300px;
    height: 240px;
    position: absolute;
    bottom: 0;
    right: 14%;
    background: url(https://corp.hifu3.com/wp-content/uploads/2025/07/dots.svg) no-repeat;
    background-size: contain;
}
.circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 9999px;
}
.circle.circleOne {
    background: var(--main-blue);
    left: -55px;
    top: 48%;
}
.circle.circleTwo {
    background: #E0ECFF;
    right: -55px;
    top: 180px;
}
ul.professional__inner--list {
    display: flex;
    justify-content: space-between;
    gap: 35px;
	position: relative;
}
ul.professional__inner--list li {
    border-radius: 4px;
    border-top: 4px solid var(--sub-deepGreen, #004EC8);
    background: #FFF;
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 35px 25px;
    width: 31%;
}
ul.professional__inner--list li h3 {
    color: var(--main-blue);
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
}
.professional__inner--bottom {
    display: flex;
    justify-content: center;
    margin: -80px 0 0px;
	position: relative;
    z-index: 1;
}

/* solution */
.tailored__inner {
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    position: relative;
    gap: 60px;
    padding: 60px 0 120px;
}
.tailored__inner--desc {
    margin: -30px auto -10px;
    display: flex;
    justify-content: center;
}
.tailored__inner--desc p {
    color: var(--main-blue);
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1.83;
    position: relative;
}
ul.tailored__inner--lists {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.02);
}
li.tailored__inner--list {
    width: calc(100% / 2);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 30px;
    border-right: solid 1px #ddd;
    gap: 15px;
}
li.tailored__inner--list:nth-child(3), li.tailored__inner--list:nth-child(4), li.tailored__inner--list:nth-child(5), li.tailored__inner--list:nth-child(6) {
    border-top: solid 1px #ddd;
}
li.tailored__inner--list:nth-child(even) {
    border-right: none;
}
.solution__img {
    width: 100px;
    height: 100px;
    border-radius: 9999px;
    background: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 21px;
}
li.tailored__inner--list p {
    width: calc(100% - 100px - 15px);
    font-weight: 600;
    font-size: 1.1rem;
}
.tailored__inner a.primaryBtn.deepblue {
    width: fit-content;
    margin: -20px auto 0;
}

/* provide */
section#LPSprovided {
    position: relative;
    background: #fff;
}
.LPSprovidedPerson {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
}
.LPSprovided__inner {
    flex-direction: column;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    position: relative;
    gap: 60px;
    padding: 160px 0 100px;
}
ul.LPSprovided__inner--list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}
ul.LPSprovided__inner--list li {
    width: 30%;
    display: flex;
    flex-direction: column;
}
.LPSprovided__inner--listImg {
    display: flex;
    justify-content: center;
    flex-grow: 1;
	align-items: end;
}
.LPSprovided__inner--listImg img {
    width: 100%;
    max-width: 320px;
}
ul.LPSprovided__inner--list li h3 {
    color: var(--main-blue);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgb(255, 255, 255, 0.6);
    border: solid 1px var(--main-blue);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-radius: 3px;
    margin-top: -22px;
}

/* faq */
section#faq {
    position: relative;
	overflow: hidden;
}
.faq__inner {
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    position: relative;
    gap: 60px;
    padding: 60px 0 120px;
	z-index: 1;
}
.faq__inner .circle.circleTwo {
    right: auto;
    left: -80px;
    top: 140px;
}
.faq__inner dl {
    display: flex;
    flex-direction: column;
    gap: 25px;
	position: relative;
}
.faq__inner--acc {
    background: #fff;
    box-shadow: 0 0 1px 0 rgb(0 0 0 / 8%), 0 1px 6px 0 rgb(0 0 0 / 11%);
    border-radius: 3px;
    transition: 0.2s ease-in;
}
.faq__inner--acc:hover {
    background: #fcfcfc;
}
.accordion {
    display: block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.5s ease-in;
    position: relative;
    padding: 20px 0 24px 64px;
    margin: 0;
}
.accordion:before {
    content: "Q";
    position: absolute;
    left: 15px;
    top: 50%;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 21px;
    background: #313131;
    color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}
.accordion.active {
    margin-bottom: 0;
}
.panel{
  max-height:0;
  overflow:hidden;
  transition: 0.3s ease-out;
}
.panel p {
    padding: 15px 20px 10px;
    margin: 0 0 15px;
    position: relative;
    padding-left: 64px;
    color: #707070;
    font-weight: 400;
    line-height: 2;
}
.panel p:before {
    content: "A";
    position: absolute;
    left: 15px;
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    vertical-align: middle;
    text-align: center;
    font-size: 21px;
    background: var(--main-primary);
    color: #fff;
    border-radius: 50%;
    font-weight: 500;
}
.acco{
  position:relative;
}
.accordion:after {
    font-size: 1.1rem;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    padding: 0 4px;
    color: #ccc;
    font-weight: 900;
    content: "\f055";
    font-family: "Font Awesome 5 Free";
}
.accordion.active:after {
    content: "\f056";
    color: var(--main-primary);
}

/* anchor */
section#LPanchor {
    position: relative;
    background: #fff;
    padding: 80px 0;
}
.LPanchor__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    border: 1px solid #EEE;
    background: #FFF;
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.02);
}
ul.LPanchor__inner--top {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #eee;
}
ul.LPanchor__inner--top li {
    width: 25%;
}
ul.LPanchor__inner--top li a, ul.LPanchor__inner--bottom li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    border-right: solid 1px #eee;
    text-align: center;
	position: relative;
}
ul.LPanchor__inner--top li a:after, ul.LPanchor__inner--bottom li a:after {
    font-size: 1.1rem;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    padding: 0 4px;
    color: #ccc;
    font-weight: 900;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    transition: 0.3s;
}
ul.LPanchor__inner--bottom {
    display: flex;
    justify-content: space-between;
}
ul.LPanchor__inner--bottom li {
    width: 50%;
}
.LPanchor__inner ul li:last-child a {
    border: none;
}
.LPanchor__inner ul li a:hover {
    background: #f9f9f9;
    color: var(--main-primary);
}

@media screen and (max-width: 1250px) {
/* （ここに1250px以下用スタイルを記述） */
	.manageSupport__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 1100px) {
/* （ここに1100px以下用スタイルを記述） */
	.LPEffect__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.professional__inner {
    padding-left: 4%;
    padding-right: 4%;
	overflow: hidden;
	}
	.tailored__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.LPSprovided__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	ul.LPSprovided__inner--list {
    gap: 25px;
	}
	ul.LPSprovided__inner--list li h3 br {
    display: none;
	}
	/* mv under */
	.mgProcess__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	li.assignment {
    padding: 15px 20px;
	}
	/* five solution */
	.fiveSolution__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 1000px) {
/* （ここに1000px以下用スタイルを記述） */
	.mgProcess__inner--graph {
    padding-left: 4%;
    padding-right: 4%;
    border-radius: 0;
	}
	.LPEffect__inner--bottom {
    flex-direction: column;
    align-items: center;
    gap: 40px;
	}
	.LPEffect__inner--bottomBlock {
    width: 80%;
	}
	section#LPanchor {
    padding-left: 4%;
    padding-right: 4%;
	}
	ul.LPanchor__inner--top {
    flex-wrap: wrap;
	}
	ul.LPanchor__inner--top li {
    width: 50%;
	}
	ul.LPanchor__inner--top li:nth-child(1) a {
    border-bottom: solid 1px #eee;
	}
	ul.LPanchor__inner--top li:nth-child(2) a {
    border-right: none;
    border-bottom: solid 1px #eee;
	}
	/* solution */
	li.assignment {
    width: calc(100% / 2 - 20px);
	}
	/* fiveSolution */
	li.fiveSolution__inner--list {
    gap: 40px;
	}
	.fiveSolution__inner--listLeft, .fiveSolution__inner--listRight {
    width: calc(100% / 2 - 20px);
	}
}

@media screen and (max-width: 900px) {
/* （ここに900px以下用スタイルを記述） */
	.managementMV__inner--top {
    flex-direction: column;
    padding-top: 120px;
	padding-bottom: 100px;
	}
	.managementMV__inner--topRight {
    position: relative;
    top: auto;
    transform: none;
	width: 100%;
	}
	ul.graphflow {
    flex-direction: column;
	}
	ul.graphflow li {
    height: 100px;
    gap: 5px;
	}
	ul.graphflow li span {
    left: auto;
    bottom: auto;
    transform: none;
    width: fit-content;
    white-space: nowrap;
    position: relative;
	}
	ul.graphflow li:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #fff;
    bottom: auto;
    margin-top: 0;
	}
	.graphText {
    width: 100%;
    height: 285px;
	}
	ul.professional__inner--list {
    flex-direction: column;
    align-items: center;
	}
	ul.professional__inner--list li {
    width: 60%;
	}
	.professional__inner .mgLP__heading {
    order: 1;
	}
	.professional__inner--bottom {
    order: 2;
    margin: -40px auto -40px;
	width: 55%;
	}
	ul.professional__inner--list {
    flex-direction: column;
    align-items: center;
    order: 3;
	}
	ul.LPSprovided__inner--list {
    gap: 40px;
	}
	ul.LPSprovided__inner--list li {
    width: 46%;
	}
	.faq__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* new mv */
	.manageSupport__inner {
    flex-direction: column-reverse;
    align-items: center;
    padding: 60px 4% 280px;
    gap: 10px;
	}
	.manageSupport__inner--right {
    position: relative;
    top: 0;
    width: 100%;
	}
	.manageSupport__inner--left {
    align-items: center;
	}
	.manageSupport__inner--left p br {
    display: none;
	}
	/* five solution */
	li.fiveSolution__inner--list {
    flex-direction: column;
    gap: 50px;
	}
	li.fiveSolution__inner--list:nth-child(even) {
    flex-direction: column;
	}
	.fiveSolution__inner--listLeft, .fiveSolution__inner--listRight {
    width: 100%;
    }
}

@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	img.pcImg {
    display: none;
	}
	img.spImg {
    display: block;
	width: 55%;
    margin: 0 auto;
	}
	.manageSupport__inner--left {
    gap: 15px;
	}
	.manageSupport__inner--left h2 span {
    font-size: 1rem;
	}
	
	h2.manageCatch {
    align-items: center;
	}
	h2.manageCatch span {
    font-size: 2rem;
	}
	.managementMV__inner--topLeft p br {
    display: none;
	}
	.managementMV__inner--topLeft a.primaryBtn {
    margin: 0 auto;
	}
	/* mv */
	.managementMV__inner--bottomCorp {
    padding: 18px 20px 50px;
    border: 6px solid #FFF;
	}
	.jissekiCorp__right h3 {
    font-size: 1.3rem;
	}
	ul.jissekiCorp__tags {
    flex-direction: column;
    gap: 6px;
	}
	l.jissekiCorp__tags li {
    width: fit-content;
	}
	button.caselinks {
    padding-bottom: 5px;
    padding-top: 8px;
	}
	.managementMV__inner {
    padding-bottom: 120px;
	}
	section#mgProcess:before {
    height: 130px;
    top: -60px;
	}
	.mgProcess__inner {
    gap: 40px;
	}
	.mgProcess__inner .mgLP__heading {
    padding-left: 4%;
    padding-right: 4%;
	}
	ul.graphflow li span {
    white-space: normal;
    width: 80%;
	}
	.mgProcess__inner--graphInner {
    padding-left: 15px;
    padding-right: 15px;
	}
	h4.mgProcess__inner--graphDesc {
    padding-left: 4%;
    padding-right: 4%;
	}
	section#mgProcess:after {
    height: 130px;
    bottom: -60px;
	}
	/* effect */
	section#LPEffect:before {
    width: 200px;
    height: 300px;
	}
	.LPEffect__inner {
    padding-top: 60px;
    gap: 30px;
    padding-bottom: 40px;
	}
	.LPEffect__inner--top {
    flex-direction: column;
    gap: 30px;
	}
	ul.LPEffect__inner--topLeft, .LPEffect__inner--topRight {
    width: 100%;
	}
	.LPEffect__inner--bottomBlock {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    padding-top: 20px;
    padding-bottom: 25px;
	}
	.LPEffect__inner--bottomBlock h3 {
    width: 100%;
    align-items: center;
	}
	dl.LPEffect__inner--bottomBlockList {
    width: 100%;
	}
	/* pro */
	ul.professional__inner--list li {
    width: 100%;
	}
	ul.professional__inner--list li h3 {
    height: auto;
	}
	/* tail */
	.tailored__inner--desc p {
    text-align: left;
	}
	.tailored__inner--desc p br {
    display: none;
	}
	li.tailored__inner--list {
    width: 100%;
    border: none;
    border-bottom: solid 1px #eee;
    padding-left: 8%;
    padding-right: 8%;
	}
	ul.LPSprovided__inner--list li {
    width: 100%;
	}
	/* faq */
	section#LPanchor {
    padding-top: 30px;
    padding-bottom: 30px;
	}
	.faq__inner {
    padding-bottom: 70px;
    gap: 35px;
	}
	.accordion {
    padding-right: 45px;
	}
	/* anchor */
	ul.LPanchor__inner--bottom {
    flex-wrap: wrap;
	}
	ul.LPanchor__inner--top li a, ul.LPanchor__inner--bottom li a {
    border: none;
	}
	ul.LPanchor__inner--top li {
    width: 100%;
	}
	ul.LPanchor__inner--bottom li {
    width: 100%;
	}
	ul.LPanchor__inner--top li:nth-child(3) a, ul.LPanchor__inner--bottom li:nth-child(1) a {
    border-bottom: solid 1px #eee;
	}
	/* new mv */
	.manageSupport__inner--left h2 {
    text-align: center;
    font-size: 2.2rem;
	flex-direction: column;
	gap: 12px;
	}
	/* assign */
	li.assignment {
    width: 100%;
	}
	/* five */
	section#fiveSolution:before {
    content: none;
	}
	.fiveSolution__inner {
    padding-top: 60px;
	}
	li.fiveSolution__inner--list {
    flex-direction: column;
    gap: 25px;
    }
	.listHeading {
    text-align: center;
    gap: 0;
	}
	.listHeading h3 {
    font-size: 1.7rem;
	}
	p.listnumber {
    left: 50%;
    transform: translateX(-50%);
	}
	li.tailored__inner--list:nth-child(3), li.tailored__inner--list:nth-child(4), li.tailored__inner--list:nth-child(5), li.tailored__inner--list:nth-child(6) {
    border-top: none;
	}
	.tailored__inner {
    padding-bottom: 0;
	}
}