@charset "utf-8";

p {
	line-height: 1.8;
	margin-bottom: 2rem;
}
.supportContents {
    counter-reset: num;
}
.imgLazy img {
	display: block;
	margin-right: auto;
	margin-left: auto;
	max-width: 100%;
	width: auto;
	height: auto;
}
:root {
    --black: #3e3a39;
    --navy: #0d2969;
    --green: #00ae3d;
    --dark-green: #108831;
    --orange: #f66e00;
    --yellow: #f6ab02;
}

/* First view
----------------------------------------- */
.FV {
	width: 100%;
	height: 300px;
	display: flex;
	align-items: center;
	background: #fff7ec url(/area/assets/images/support/fv_bg_pc.jpg) right top / 1380px auto no-repeat;
}
.FV h1 {
	font-size: clamp(3.4rem, 9.06vw, 6rem);
	font-weight: 900;
	position: relative;
	color: var(--navy);
	width: 1120px;
	margin: 0 auto;
	letter-spacing: 2px;
	font-family: var(--fontFamily-sans-noto);
}
.FV h1 .oswald {
	font-size: clamp(3.6rem, 9.6vw, 6.2rem);
	font-family: "Oswald";
	letter-spacing: 4px;
}
.FV h1 .to {
	display: inline-block;
    transform: translateX(-5px);
}
.FV h1 .sub {
	font-size: clamp(2.1rem, 5.6vw, 4rem);
	display: block;
	color: var(--black);
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.4;
	letter-spacing: 0;
}
.FV h1::after {
	position: absolute;
    content: '';
    background-image: url(/area/assets/images/support/fv_pc.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
    width: 407px;
    aspect-ratio: 1 / 1;
    top: -1rem;
    right: 7rem;
}
@media screen and (max-width: 835px) {
	.FV {
		overflow: hidden;
	}
	.FV h1 {
		width: 90%;
	}
	.FV h1 .sub {
		margin-bottom: 0;
	}
	.FV h1::after {
		width: 260px;
		top: -2rem;
    	right: -6rem;
	}
}
@media screen and (max-width: 600px) {
	.FV {
		height: auto;
		aspect-ratio: 750 / 521;
		align-items: flex-start;
		padding: 8vw 0;
		background: #fff7ec url(/area/assets/images/support/fv_bg_sp.jpg) right bottom / 100% auto no-repeat;
	}
	.FV h1 {
		width: 100%;
		line-height: 1.4;
		text-align: center;
	}
	.FV h1::after {
		background-image: url(/area/assets/images/support/fv_sp.png);
    	aspect-ratio: 1148 / 405;
    	width: 95%;
    	top: auto;
        bottom: -36vw;
    	right: 50%;
    	transform: translateX(50%);
	}
}

/* lead
----------------------------------------- */
.lead {
	width: 100%;
	max-width: 1080px;
	margin: 23px auto 70px;
}
.lead p {
	padding: 0 20px;
}
.lead .links {
	margin: 55px;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.lead .links span {
	font-size: clamp(1.8rem, 4.8vw, 2rem);
	font-weight: 800;
	display: inline-block;
	position: relative;
}
.lead .links span::before {
	position: absolute;
    content: '';
    background-image: url(/area/assets/images/support/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 23px;
    aspect-ratio: 1 / 1;
    top: 5px;
    left: -21px;
}
.lead .links div {
	display: flex;
	gap: 20px;
	margin-top: 20px;
}
.lead .links div a {
	width: 320px;
	height: 105px;
	font-size: clamp(1.8rem, 4.8vw, 2.3rem);
	color: #fff;
	text-decoration: none;
	border-radius: 100px;
	display: flex;
    align-items: center;
	font-weight: 800;
	line-height: 1.2;
	transition: 0.2s all;
	position: relative;
	padding-left: 30px;
	box-shadow: 0 3px 2px rgba(36, 57, 123, 0.3);
	overflow: hidden;
}
.lead .links div a:hover {
	transform: translateY(3px);
	box-shadow: none;
}
.lead .links div a::before,
.lead .links div a::after {
	position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
}
.lead .links div a.link_mimamori::before {
    background-image: url(/area/assets/images/support/btn_mimamori.png);
    width: 100px;
    aspect-ratio: 324 / 282;
    top: 20px;
    right: 35px;
}
.lead .links div a.link_up::before {
    background-image: url(/area/assets/images/support/btn_up.png);
    width: 100px;
    aspect-ratio: 285 / 254;
    top: 20px;
    right: 32px;
}
.lead .links div a.link_system::before {
    background-image: url(/area/assets/images/support/btn_system.png);
    width: 115px;
    aspect-ratio: 323 / 240;
    top: 21px;
    right: 21px;
}
.lead .links div a::after {
	width: 24px;
    aspect-ratio: 1 / 1;
    top: 39px;
    right: 14px;
}
.lead .links div a.link_mimamori::after {
    background-image: url(/area/assets/images/support/link_arrow_mimamori.png);
}
.lead .links div a.link_up::after {
    background-image: url(/area/assets/images/support/link_arrow_up.png);
}
.lead .links div a.link_system::after {
    background-image: url(/area/assets/images/support/link_arrow_system.png);
}
.lead .links div a.link_mimamori {
	background-color: var(--green);
}
.lead .links div a.link_up {
	background-color: var(--orange);
}
.lead .links div a.link_system {
	background-color: var(--yellow);
}
@media screen and (max-width: 835px) {
	.lead .links div {
		width: 90%;
		flex-direction: column;
	}
	.lead .links div a {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.lead {
		margin-bottom: 45px;
	}
	.lead .links {
		margin: 50px auto 0;
	}
	.lead .links span {
		padding-left: 26px;
	}
	.lead .links span::before {
		width: 46px;
		left: -10px;
	}
	.lead .links div a {
		height: 65px;
		padding-left: 23px;
		box-shadow: 0 2px 2px rgba(36, 57, 123, 0.3);
	}
	.lead .links div a::after {
		width: 22px;
		right: 10px;
		top: 50%;
    	transform: translateY(-50%);
	}
	.lead .links div a.link_mimamori::before {
		width: 70px;
    	top: 7px;
	}
	.lead .links div a.link_up::before {
		width: 70px;
		top: 8px;
	}
	.lead .links div a.link_system::before {
		width: 80px;
	    aspect-ratio: 323 / 240;
	    top: 8px;
	    right: 28px;
	}
}

/* cont
----------------------------------------- */
.supportContents h2 {
	color: var(--navy);
	box-shadow: 0 3px 2px rgba(36, 57, 123, 0.3);
	font-size: clamp(2.5rem, 6.66vw, 5rem);
	font-weight: 900;
	font-family: var(--fontFamily-sans-noto);
	height: 180px;
	width: 100%;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}
.supportContents h2::before,
.supportContents h2::after {
	position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
}
.supportContents .cont_mimamori h2::before,
.supportContents .cont_up h2::before,
.supportContents .cont_system h2::before {
    height: 150px;
    aspect-ratio: 3 / 1;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    z-index: 5;
}
.supportContents .cont_mimamori h2::before {
    background-image: url(/area/assets/images/support/h2_mimamori.jpg);
}
.supportContents .cont_up h2::before {
    background-image: url(/area/assets/images/support/h2_up.jpg);
}
.supportContents .cont_system h2::before {
    background-image: url(/area/assets/images/support/h2_system.jpg);
}
.supportContents h2::after {
    background-color: #fff;
    width: 50vw;
    height: 150px;
    top: 15px;
    right: 0;
    z-index: 0;
}
.supportContents .cont_mimamori h2,
.supportContents .cont_up h2,
.supportContents .cont_system h2 {
	display: flex;
	align-items: center;
}
.supportContents .cont_mimamori h2 {
	background: var(--dark-green) url(/area/assets/images/support/h2_bg_mimamori.jpg) left -1px top / 1056px auto no-repeat;
}
.supportContents .cont_up h2 {
	background: var(--orange) url(/area/assets/images/support/h2_bg_up.jpg) left -1px top / 1056px auto no-repeat;
}
.supportContents .cont_system h2 {
	background: var(--yellow) url(/area/assets/images/support/h2_bg_system.jpg) left -1px top / 1056px auto no-repeat;
}
.supportContents h2 span {
	height: 150px;
	background-color: #fff;
	width: 1190px;
	display: flex;
	align-items: center;
	margin: 0 auto;
	border-radius: 100px;
	padding-left: 125px;
	position: relative;
    z-index: 3;
    overflow: hidden;
}
.supportContents h2 span::before {
	position: absolute;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 62px;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
}
.supportContents .cont_mimamori h2 span::before {
    background-image: url(/area/assets/images/support/icon_mimamori.png);
}
.supportContents .cont_up h2 span::before {
    background-image: url(/area/assets/images/support/icon_up.png);
}
.supportContents .cont_system h2 span::before {
	aspect-ratio: 1 / 0.7;
    background-image: url(/area/assets/images/support/icon_system.png);
}
.supportContents .cont_mimamori {
    padding-bottom: 40px;
	background-color: #dcf8df;
}
.supportContents .cont_up {
    padding-bottom: 40px;
	background-color: #f8e9dc;
}
.supportContents .cont_system {
    padding-bottom: 40px;
	background-color: #f7f2cd;
}
.supportContents .cont {
	width: 1000px;
	margin: 0 auto;
	padding: 85px 100px 50px;
	background-color: #fff;
}
.supportContents .cont p {
    margin: 3rem 0 0;
}
.supportContents .cont p span.hosoku {
	font-size: 1.4rem;
    color: #555555;
    line-height: 1.3;
    font-weight: normal;
}
.supportContents h3 {
	text-align: center;
	color: #181818;
	font-size: clamp(2.25rem, 6vw, 4.5rem);
	font-family: var(--fontFamily-sans-noto);
	font-weight: 800;
	display: flex;
	position: relative;
    flex-direction: column;
    border-top: 2px solid #d8d8d8;
    align-items: center;
    margin: 22px auto 24px;
    padding-top: 25px;
}
.supportContents h3::before {
	position: absolute;
    top: -50px;
    color: var(--navy);
    font-weight: 500;
    font-family: 'Oswald';
    display: block;
    counter-increment: num;
    content: counter(num);
    font-size: clamp(2.4rem, 6.8vw, 4.7rem);
    line-height: 0.8;
    z-index: 5;
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
.supportContents h3 span {
	color: #3e3a39;
	font-size: clamp(1.6rem, 4.266vw, 3.5rem);
	font-weight: 700;
	line-height: 1.2;
}
.supportContents h3 .h3_border_circle01,
.supportContents h3 .h3_border_circle02 {
	position: absolute;
    content: '';
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 75px;
	border-radius:100px 100px 0 0;
	background: #fbe000;
}
.supportContents h3 .h3_border_circle02 {
    top: -68px;
    width: 136px;
    height: 70px;
	border: 2px solid #fff;
}
.h4_3steps {
	color: var(--navy);
    padding: 8px 0;
    margin-bottom: 20px;
    background-color: #f8efdd;
    font-size: clamp(1.6rem, 4.266vw, 2rem);
    border-radius: 5px;
    text-align: center;
}
@media screen and (max-width: 835px) {
	.supportContents h2::after {
		display: none;
	}
	.supportContents .cont_mimamori h2::before,
	.supportContents .cont_up h2::before,
	.supportContents .cont_system h2::before {
		display: none;
	}
	.supportContents .cont_mimamori h2,
	.supportContents .cont_up h2,
	.supportContents .cont_system h2 {
		padding-left: 20px;
	}
	.supportContents h2 span {
		border-radius: 100px 0 0 100px;
	}
	.supportContents .cont {
		width: 92%;
		padding: 80px 30px 40px;
	}
}
@media screen and (max-width: 600px) {
	.supportContents h2 {
		height: 100px;
	}
	.supportContents .cont_mimamori h2,
	.supportContents .cont_up h2,
	.supportContents .cont_system h2 {
		padding-left: 10px;
		background-size: 110%;
	}
	.supportContents h2 span {
		height: 84px;
		padding-left: 16.5vw;
	}
	.supportContents h2 span::before {
		width: 7.5vw;
		left: 5.7vw;
	}
	.supportContents .cont {
		padding: 40px 16px 30px;
	}
	.supportContents .cont p {
		margin: 2rem 0 0;
	}
	.supportContents .cont_mimamori,
	.supportContents .cont_up,
	.supportContents .cont_system {
		padding-bottom: 20px;
	}
	.supportContents h3 {
		border-top: 1px solid #d8d8d8;
		margin: 22px auto 17px;
    	padding-top: 18px;
	}
	.supportContents h3::before {
		top: -28px;
	}
	.supportContents h3 .h3_border_circle01 {
		width: 85px;
		height: 42.5px;
		top: -42.5px;
	}
	.supportContents h3 .h3_border_circle02 {
		width: 77px;
        height: 40.5px;
        top: -38.5px;
	}
}

/* closing
----------------------------------------- */
.cont_closing {
	padding-top: 70px;
	background: #fafafa url(/area/assets/images/support/closing_bg.jpg) left -1px top / 100% auto no-repeat;
}
.supportContents .cont_closing h2 {
	margin-bottom: 30px;
	height: auto;
	box-shadow: none;
	text-align: center;
	font-family: var(--fontFamily-serif-noto);
	font-size: clamp(2.5rem, 6.66vw, 5.3rem);
}
.supportContents .cont_closing h2,
.supportContents .cont_closing p {
	text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}
.supportContents .cont_closing h2 span {
	height: auto;
	overflow: visible;
	width: fit-content;
	padding-left: 0;
	font-weight: 700;
	font-family: var(--fontFamily-sans-noto);
	color: #ff5900;
	font-size: clamp(1.8rem, 4.8vw, 3.5rem);
	background-color: transparent !important;
}
.supportContents .cont_closing h2::after {
	display: none;
}
.supportContents .cont_closing .cont {
	padding-top: 0;
	background-color: transparent;
}
.cont_closing ul {
	margin: 30px 0;
	display: grid;
    grid-template-columns: 15px 1fr 15px;
    grid-template-columns: clamp(15px, 4vw, 40px) 1fr clamp(15px, 4vw, 40px);
    grid-row-gap: min(4.8vw, 25px);
}
.cont_closing ul li {
	list-style: none;
    grid-column: 2;
    display: flex;
    font: 700 clamp(1.6rem, 4.8vw, 2rem) / 1.3 var(--fontFamily-sans-yakuhan);
}
.cont_closing ul li::before {
	content: '';
    flex-shrink: 0;
    margin: -6px 13px 0 0;
    margin: clamp(-12px, -1.333vw, -5px) clamp(5px, 1.333vw, 13px) 0 0;
    width: 28px;
    width: clamp(28px, 7.467vw, 38px);
    height: 28px;
    height: clamp(28px, 7.467vw, 38px);
    background: url(/mega/wp-content/themes/site/images/common/check_icon.svg) 0 0 / contain no-repeat;
}
@media screen and (max-width: 600px) {
	.cont_closing {
		padding-top: 54px;
	}
	.supportContents .cont_closing h2 {
		margin-bottom: 0;
	}
	.supportContents .cont_closing .cont {
		padding: 0px 8px 40px;
	}
	.cont_closing ul {
		padding-left: 0;
	}
	.cont_closing ul li {
		font: 700 clamp(1.6rem, 4.266vw, 2rem) / 1.7 var(--fontFamily-sans-yakuhan);
	}
}









